Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for init (0.18 sec)

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

    ```Python hl_lines="7"
    {!../../../docs_src/query_params_str_validations/tutorial013.py!}
    ```
    
    !!! note
        ✔️ 🤯 👈 👉 💼, FastAPI 🏆 🚫 ✅ 🎚 📇.
    
        🖼, `List[int]` 🔜 ✅ (& 📄) 👈 🎚 📇 🔢. ✋️ `list` 😞 🚫🔜.
    
    ## 📣 🌅 🗃
    
    👆 💪 🚮 🌅 ℹ 🔃 🔢.
    
    👈 ℹ 🔜 🔌 🏗 🗄 & ⚙️ 🧾 👩‍💻 🔢 & 🔢 🧰.
    
    !!! note
        ✔️ 🤯 👈 🎏 🧰 5️⃣📆 ✔️ 🎏 🎚 🗄 🐕‍🦺.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 11.9K bytes
    - Viewed (0)
  2. docs/ko/docs/tutorial/query-params-str-validations.md

    `List[str]` 대신 `list`를 직접 사용할 수도 있습니다:
    
    ```Python hl_lines="7"
    {!../../../docs_src/query_params_str_validations/tutorial013.py!}
    ```
    
    !!! note "참고"
        이 경우 FastAPI는 리스트의 내용을 검사하지 않음을 명심하기 바랍니다.
    
        예를 들어, `List[int]`는 리스트 내용이 정수인지 검사(및 문서화)합니다. 하지만 `list` 단독일 경우는 아닙니다.
    
    ## 더 많은 메타데이터 선언
    
    매개변수에 대한 정보를 추가할 수 있습니다.
    
    해당 정보는 생성된 OpenAPI에 포함되고 문서 사용자 인터페이스 및 외부 도구에서 사용됩니다.
    
    !!! note "참고"
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Feb 11 13:48:31 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/query-params-str-validations.md

        {!> ../../../docs_src/query_params_str_validations/tutorial013.py!}
        ```
    
    !!! note
        Keep in mind that in this case, FastAPI won't check the contents of the list.
    
        For example, `List[int]` would check (and document) that the contents of the list are integers. But `list` alone wouldn't.
    
    ## Declare more metadata
    
    You can add more information about the parameter.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 25.7K bytes
    - Viewed (0)
  4. docs/zh/docs/tutorial/query-params-str-validations.md

    你也可以直接使用 `list` 代替 `List [str]`:
    
    ```Python hl_lines="7"
    {!../../../docs_src/query_params_str_validations/tutorial013.py!}
    ```
    
    !!! note
        请记住,在这种情况下 FastAPI 将不会检查列表的内容。
    
        例如,`List[int]` 将检查(并记录到文档)列表的内容必须是整数。但是单独的 `list` 不会。
    
    ## 声明更多元数据
    
    你可以添加更多有关该参数的信息。
    
    这些信息将包含在生成的 OpenAPI 模式中,并由文档用户界面和外部工具所使用。
    
    !!! note
        请记住,不同的工具对 OpenAPI 的支持程度可能不同。
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 9.2K bytes
    - Viewed (0)
  5. docs/ru/docs/tutorial/query-params-str-validations.md

        {!> ../../../docs_src/query_params_str_validations/tutorial013.py!}
        ```
    
    !!! note "Технические детали"
        Запомните, что в таком случае, FastAPI не будет проверять содержимое списка.
    
        Например, для List[int] список будет провалидирован (и задокументирован) на содержание только целочисленных элементов. Но для простого `list` такой проверки не будет.
    
    ## Больше метаданных
    
    Вы можете добавить больше информации об query-параметре.
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 38K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/query-params-str-validations.md

        {!> ../../../docs_src/query_params_str_validations/tutorial013.py!}
        ```
    
    !!! note "Hinweis"
        Beachten Sie, dass FastAPI in diesem Fall den Inhalt der Liste nicht überprüft.
    
        Zum Beispiel würde `List[int]` überprüfen (und dokumentieren) dass die Liste Ganzzahlen enthält. `list` alleine macht das nicht.
    
    ## Deklarieren von mehr Metadaten
    
    Sie können mehr Informationen zum Parameter hinzufügen.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 17:58:59 GMT 2024
    - 27.7K bytes
    - Viewed (0)
Back to top