- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for fixedquery (0.07 sec)
-
docs/en/docs/tutorial/query-params-str-validations.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 25.4K bytes - Viewed (0) -
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`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 17:14:38 UTC 2024 - 9.5K bytes - Viewed (0) -
docs/ko/docs/tutorial/query-params-str-validations.md
```Python hl_lines="10" {!../../docs_src/query_params_str_validations/tutorial004.py!} ``` 이 특정 정규표현식은 전달 받은 매개변수 값을 검사합니다: * `^`: 이전에 문자가 없고 뒤따르는 문자로 시작합니다. * `fixedquery`: 정확히 `fixedquery` 값을 갖습니다. * `$`: 여기서 끝나고 `fixedquery` 이후로 아무 문자도 갖지 않습니다. **"정규표현식"** 개념에 대해 상실감을 느꼈다면 걱정하지 않아도 됩니다. 많은 사람에게 어려운 주제입니다. 아직은 정규표현식 없이도 많은 작업들을 할 수 있습니다. 하지만 언제든지 가서 배울수 있고, **FastAPI**에서 직접 사용할 수 있다는 사실을 알고 있어야 합니다.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.5K bytes - Viewed (0) -
docs/pt/docs/tutorial/query-params-str-validations.md
Essa expressão regular específica verifica se o valor recebido no parâmetro: * `^`: Inicia com os seguintes caracteres, ou seja, não contém caracteres anteriores. * `fixedquery`: contém o valor exato `fixedquery`. * `$`: termina aqui, não contém nenhum caractere após `fixedquery`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.3K bytes - Viewed (0) -
docs/zh/docs/tutorial/query-params-str-validations.md
这个指定的正则表达式通过以下规则检查接收到的参数值: * `^`:以该符号之后的字符开头,符号之前没有字符。 * `fixedquery`: 值精确地等于 `fixedquery`。 * `$`: 到此结束,在 `fixedquery` 之后没有更多字符。 如果你对所有的这些**「正则表达式」**概念感到迷茫,请不要担心。对于许多人来说这都是一个困难的主题。你仍然可以在无需正则表达式的情况下做很多事情。 但是,一旦你需要用到并去学习它们时,请了解你已经可以在 **FastAPI** 中直接使用它们。 ## 默认值 你可以向 `Query` 的第一个参数传入 `None` 用作查询参数的默认值,以同样的方式你也可以传递其他默认值。 假设你想要声明查询参数 `q`,使其 `min_length` 为 `3`,并且默认值为 `fixedquery`: ```Python hl_lines="7"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.2K bytes - Viewed (0) -
docs/em/docs/tutorial/query-params-str-validations.md
```Python hl_lines="9" {!> ../../docs_src/query_params_str_validations/tutorial004_py310.py!} ``` //// 👉 🎯 🥔 🧬 ✅ 👈 📨 🔢 💲: * `^`: ▶️ ⏮️ 📄 🦹, 🚫 ✔️ 🦹 ⏭. * `fixedquery`: ✔️ ☑ 💲 `fixedquery`. * `$`: 🔚 📤, 🚫 ✔️ 🙆 🌖 🦹 ⏮️ `fixedquery`. 🚥 👆 💭 💸 ⏮️ 🌐 👉 **"🥔 🧬"** 💭, 🚫 😟. 👫 🏋️ ❔ 📚 👫👫. 👆 💪 📚 💩 🍵 💆♂ 🥔 🧬. ✋️ 🕐❔ 👆 💪 👫 & 🚶 & 💡 👫, 💭 👈 👆 💪 ⏪ ⚙️ 👫 🔗 **FastAPI**. ## 🔢 💲
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11.7K bytes - Viewed (0) -
docs/ja/docs/tutorial/query-params-str-validations.md
* `^`: は、これ以降の文字で始まり、これより以前には文字はありません。 * `fixedquery`: は、正確な`fixedquery`を持っています. * `$`: で終わる場合、`fixedquery`以降には文字はありません. もしこれらすべての **正規表現**のアイデアについて迷っていても、心配しないでください。多くの人にとって難しい話題です。正規表現を必要としなくても、まだ、多くのことができます。 しかし、あなたがそれらを必要とし、学ぶときにはすでに、 **FastAPI**で直接それらを使用することができます。 ## デフォルト値 第一引数に`None`を渡して、デフォルト値として使用するのと同じように、他の値を渡すこともできます。 クエリパラメータ`q`の`min_length`を`3`とし、デフォルト値を`fixedquery`としてみましょう: ```Python hl_lines="7"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.5K bytes - Viewed (0) -
docs/ru/docs/tutorial/query-params-str-validations.md
``` //// Данное регулярное выражение проверяет, что полученное значение параметра: * `^`: начало строки. * `fixedquery`: в точности содержит строку `fixedquery`. * `$`: конец строки, не имеет символов после `fixedquery`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 37.5K bytes - Viewed (0) -
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`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 27.2K bytes - Viewed (0)