Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for tipo (0.14 sec)

  1. docs/ja/docs/tutorial/query-params.md

    ```Python hl_lines="10"
    {!../../../docs_src/query_params/tutorial006.py!}
    ```
    
    この場合、3つのクエリパラメータがあります。:
    
    * `needy`、必須の `str` 。
    * `skip`、デフォルト値を `0` とする `int` 。
    * `limit`、オプショナルな `int` 。
    
    !!! tip "豆知識"
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  2. docs/es/docs/tutorial/query-params.md

    ...los parámetros de query son:
    
    * `skip`: con un valor de `0`
    * `limit`: con un valor de `10`
    
    Dado que son parte de la URL son strings "naturalmente".
    
    Pero cuando los declaras con tipos de Python (en el ejemplo arriba, como `int`) son convertidos a ese tipo y son validados con él.
    
    Todo el proceso que aplicaba a los parámetros de path también aplica a los parámetros de query:
    
    * Soporte del editor (obviamente)
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/query-params.md

    * `skip`: com o valor `0`
    * `limit`: com o valor `10`
    
    Como eles são parte da URL, eles são "naturalmente" strings.
    
    Mas quando você declara eles com os tipos do Python (no exemplo acima, como `int`), eles são convertidos para aquele tipo e validados em relação a ele.
    
    Todo o processo que era aplicado para parâmetros de rota também é aplicado para parâmetros de consulta:
    
    * Suporte do editor (obviamente)
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  4. docs/ko/docs/tutorial/query-params.md

    ```Python hl_lines="10"
    {!../../../docs_src/query_params/tutorial006.py!}
    ```
    
    위 예시에서는 3가지 쿼리 매개변수가 있습니다:
    
    * `needy`, 필수적인 `str`.
    * `skip`, 기본값이 `0`인 `int`.
    * `limit`, 선택적인 `int`.
    
    !!! tip "팁"
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  5. docs/zh/docs/tutorial/query-params.md

    ```Python hl_lines="10"
    {!../../../docs_src/query_params/tutorial006.py!}
    ```
    
    本例中有 3 个查询参数:
    
    * `needy`,必选的 `str` 类型参数
    * `skip`,默认值为 `0` 的 `int` 类型参数
    * `limit`,可选的 `int` 类型参数
    
    !!! tip "提示"
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  6. docs/fr/docs/tutorial/query-params.md

    ```
    
    Ici, on a donc 3 paramètres de requête :
    
    * `needy`, requis et de type `str`.
    * `skip`, un `int` avec comme valeur par défaut `0`.
    * `limit`, un `int` optionnel.
    
    !!! tip "Astuce"
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Wed Sep 27 20:52:31 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/query-params.md

        ```
    
    In this case, there are 3 query parameters:
    
    * `needy`, a required `str`.
    * `skip`, an `int` with a default value of `0`.
    * `limit`, an optional `int`.
    
    !!! tip
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Oct 20 09:08:42 GMT 2023
    - 5.1K bytes
    - Viewed (0)
  8. docs/ru/docs/tutorial/query-params.md

        ```
    
    В этом примере, у нас есть 3 параметра запроса:
    
    * `needy`, обязательный `str`.
    * `skip`, типа `int` и со значением по умолчанию `0`.
    * `limit`, необязательный `int`.
    
    !!! tip "Подсказка"
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  9. docs/de/docs/tutorial/query-params.md

        ```
    
    In diesem Fall gibt es drei Query-Parameter:
    
    * `needy`, ein erforderlicher `str`.
    * `skip`, ein `int` mit einem Defaultwert `0`.
    * `limit`, ein optionales `int`.
    
    !!! tip "Tipp"
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jan 25 14:53:41 GMT 2024
    - 5.6K bytes
    - Viewed (0)
Back to top