Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for fixedquery (0.21 sec)

  1. docs/fr/docs/tutorial/query-params-str-validations.md

    Cette expression régulière vérifie que la valeur passée comme paramètre :
    
    * `^` : commence avec les caractères qui suivent, avec aucun caractère avant ceux-là.
    * `fixedquery` : a pour valeur exacte `fixedquery`.
    * `$` : se termine directement ensuite, n'a pas d'autres caractères après `fixedquery`.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Jul 27 18:53:21 GMT 2023
    - 9.8K bytes
    - Viewed (0)
  2. docs/ja/docs/tutorial/query-params-str-validations.md

    * `^`: は、これ以降の文字で始まり、これより以前には文字はありません。
    * `fixedquery`: は、正確な`fixedquery`を持っています.
    * `$`: で終わる場合、`fixedquery`以降には文字はありません.
    
    もしこれらすべての **正規表現**のアイデアについて迷っていても、心配しないでください。多くの人にとって難しい話題です。正規表現を必要としなくても、まだ、多くのことができます。
    
    しかし、あなたがそれらを必要とし、学ぶときにはすでに、 **FastAPI**で直接それらを使用することができます。
    
    ## デフォルト値
    
    第一引数に`None`を渡して、デフォルト値として使用するのと同じように、他の値を渡すこともできます。
    
    クエリパラメータ`q`の`min_length`を`3`とし、デフォルト値を`fixedquery`としてみましょう:
    
    ```Python hl_lines="7"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat May 14 11:59:59 GMT 2022
    - 10.5K bytes
    - Viewed (1)
  3. docs/em/docs/tutorial/query-params-str-validations.md

        {!> ../../../docs_src/query_params_str_validations/tutorial004_py310.py!}
        ```
    
    👉 🎯 🥔 🧬 ✅ 👈 📨 🔢 💲:
    
    * `^`: ▶️ ⏮️ 📄 🦹, 🚫 ✔️ 🦹 ⏭.
    * `fixedquery`: ✔️ ☑ 💲 `fixedquery`.
    * `$`: 🔚 📤, 🚫 ✔️ 🙆 🌖 🦹 ⏮️ `fixedquery`.
    
    🚥 👆 💭 💸 ⏮️ 🌐 👉 **"🥔 🧬"** 💭, 🚫 😟. 👫 🏋️ ❔ 📚 👫👫. 👆 💪 📚 💩 🍵 💆‍♂ 🥔 🧬.
    
    ✋️ 🕐❔ 👆 💪 👫 & 🚶 & 💡 👫, 💭 👈 👆 💪 ⏪ ⚙️ 👫 🔗 **FastAPI**.
    
    ## 🔢 💲
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 11.9K bytes
    - Viewed (0)
  4. docs/ru/docs/tutorial/query-params-str-validations.md

        ```
    
    Данное регулярное выражение проверяет, что полученное значение параметра:
    
    * `^`: начало строки.
    * `fixedquery`: в точности содержит строку `fixedquery`.
    * `$`: конец строки, не имеет символов после `fixedquery`.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 38K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/query-params-str-validations.md

    This specific regular expression pattern checks that the received parameter value:
    
    * `^`: starts with the following characters, doesn't have characters before.
    * `fixedquery`: has the exact value `fixedquery`.
    * `$`: ends there, doesn't have any more characters after `fixedquery`.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 25.7K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/query-params-str-validations.md

        ```
    
    Dieses bestimmte reguläre Suchmuster prüft, ob der erhaltene Parameter-Wert:
    
    * `^`: mit den nachfolgenden Zeichen startet, keine Zeichen davor hat.
    * `fixedquery`: den exakten Text `fixedquery` hat.
    * `$`: danach endet, keine weiteren Zeichen hat als `fixedquery`.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 17:58:59 GMT 2024
    - 27.7K bytes
    - Viewed (0)
Back to top