Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 316 for reseed (0.14 seconds)

  1. docs/es/docs/tutorial/body-nested-models.md

    }
    ```
    
    /// info | Información
    
    Nota cómo la clave `images` ahora tiene una lista de objetos de imagen.
    
    ///
    
    ## Modelos anidados profundamente { #deeply-nested-models }
    
    Puedes definir modelos anidados tan profundamente como desees:
    
    {* ../../docs_src/body_nested_models/tutorial007_py310.py hl[7,12,18,21,25] *}
    
    /// info | Información
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 7.2K bytes
    - Click Count (0)
  2. docs/de/docs/tutorial/body-nested-models.md

    # Body – Verschachtelte Modelle { #body-nested-models }
    
    Mit **FastAPI** können Sie (dank Pydantic) beliebig tief verschachtelte Modelle definieren, validieren, dokumentieren und verwenden.
    
    ## Listen als Felder { #list-fields }
    
    Sie können ein Attribut als Kindtyp definieren, zum Beispiel eine Python-`list`.
    
    {* ../../docs_src/body_nested_models/tutorial001_py310.py hl[12] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  3. docs/zh-hant/docs/tutorial/body-nested-models.md

    # Body - 巢狀模型 { #body-nested-models }
    
    使用 **FastAPI**,你可以定義、驗證、文件化,並使用任意深度的巢狀模型(感謝 Pydantic)。
    
    ## 列表欄位 { #list-fields }
    
    你可以將屬性定義為某個子型別。例如,Python 的 `list`:
    
    {* ../../docs_src/body_nested_models/tutorial001_py310.py hl[12] *}
    
    這會讓 `tags` 成為一個列表,儘管尚未宣告列表元素的型別。
    
    ## 具有型別參數的列表欄位 { #list-fields-with-type-parameter }
    
    不過,Python 有一種專門的方式來宣告具有內部型別(「型別參數」)的列表:
    
    ### 宣告帶有型別參數的 `list` { #declare-a-list-with-a-type-parameter }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  4. docs/en/docs/tutorial/body-nested-models.md

    And it will be annotated / documented accordingly too.
    
    ## Nested Models { #nested-models }
    
    Each attribute of a Pydantic model has a type.
    
    But that type can itself be another Pydantic model.
    
    So, you can declare deeply nested JSON "objects" with specific attribute names, types and validations.
    
    All that, arbitrarily nested.
    
    ### Define a submodel { #define-a-submodel }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 6.6K bytes
    - Click Count (0)
  5. docs/ja/docs/tutorial/body-nested-models.md

    # ボディ - ネストされたモデル { #body-nested-models }
    
    **FastAPI** を使用すると、深くネストされた任意のモデルを定義、検証、文書化、使用することができます(Pydanticのおかげです)。
    
    ## リストのフィールド { #list-fields }
    
    属性をサブタイプとして定義することができます。例えば、Pythonの`list`:
    
    {* ../../docs_src/body_nested_models/tutorial001_py310.py hl[12] *}
    
    これにより、各項目の型は宣言されていませんが、`tags`はリストになります。
    
    ## タイプパラメータを持つリストのフィールド { #list-fields-with-type-parameter }
    
    しかし、Pythonには内部の型、または「タイプパラメータ」を使ってリストを宣言するための特定の方法があります:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 8.6K bytes
    - Click Count (0)
  6. docs/tr/docs/tutorial/body-nested-models.md

    # Body - İç İçe Modeller { #body-nested-models }
    
    **FastAPI** ile (Pydantic sayesinde) istediğiniz kadar derin iç içe geçmiş modelleri tanımlayabilir, doğrulayabilir, dokümante edebilir ve kullanabilirsiniz.
    
    ## List alanları { #list-fields }
    
    Bir attribute’u bir alt tipe sahip olacak şekilde tanımlayabilirsiniz. Örneğin, bir Python `list`:
    
    {* ../../docs_src/body_nested_models/tutorial001_py310.py hl[12] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  7. docs/pt/docs/tutorial/body-nested-models.md

    # Corpo - Modelos aninhados { #body-nested-models }
    
    Com o **FastAPI**, você pode definir, validar, documentar e usar modelos arbitrariamente e profundamente aninhados (graças ao Pydantic).
    
    ## Campos do tipo Lista { #list-fields }
    
    Você pode definir um atributo como um subtipo. Por exemplo, uma `list` do Python:
    
    {* ../../docs_src/body_nested_models/tutorial001_py310.py hl[12] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 7.3K bytes
    - Click Count (0)
  8. docs/fr/docs/tutorial/body-nested-models.md

    # Corps - Modèles imbriqués { #body-nested-models }
    
    Avec FastAPI, vous pouvez définir, valider, documenter et utiliser des modèles imbriqués à n'importe quelle profondeur (grâce à Pydantic).
    
    ## Déclarer des champs de liste { #list-fields }
    
    Vous pouvez définir un attribut comme étant un sous-type. Par exemple, une `list` Python :
    
    {* ../../docs_src/body_nested_models/tutorial001_py310.py hl[12] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  9. docs/ko/docs/tutorial/body-nested-models.md

    # 본문 - 중첩 모델 { #body-nested-models }
    
    **FastAPI**를 사용하면 (Pydantic 덕분에) 임의로 깊게 중첩된 모델을 정의, 검증, 문서화하고 사용할 수 있습니다.
    
    ## 리스트 필드 { #list-fields }
    
    어트리뷰트를 서브타입으로 정의할 수 있습니다. 예를 들어 파이썬 `list`는:
    
    {* ../../docs_src/body_nested_models/tutorial001_py310.py hl[12] *}
    
    이는 `tags`를 리스트로 만들지만, 리스트 요소의 타입을 선언하지는 않습니다.
    
    ## 타입 매개변수가 있는 리스트 필드 { #list-fields-with-type-parameter }
    
    하지만 파이썬에는 내부 타입, 즉 "타입 매개변수"를 사용해 리스트를 선언하는 특정한 방법이 있습니다:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 7.7K bytes
    - Click Count (0)
  10. docs/zh/docs/tutorial/body-nested-models.md

    # 请求体 - 嵌套模型 { #body-nested-models }
    
    使用 **FastAPI**,你可以定义、校验、记录文档并使用任意深度嵌套的模型(归功于Pydantic)。
    
    ## List 字段 { #list-fields }
    
    你可以将一个属性定义为一个子类型。例如,Python `list`:
    
    {* ../../docs_src/body_nested_models/tutorial001_py310.py hl[12] *}
    
    这将使 `tags` 成为一个由元素组成的列表。不过它没有声明每个元素的类型。
    
    ## 带类型参数的 List 字段 { #list-fields-with-type-parameter }
    
    不过,Python 有一种用于声明具有内部类型(类型参数)的列表的特定方式:
    
    ### 声明带类型参数的 `list` { #declare-a-list-with-a-type-parameter }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 6.8K bytes
    - Click Count (0)
Back to Top