|
|
@ -6,9 +6,17 @@ |
|
|
|
|
|
|
|
你可以将一个属性定义为拥有子元素的类型。例如 Python `list`: |
|
|
|
|
|
|
|
```Python hl_lines="12" |
|
|
|
{!../../../docs_src/body_nested_models/tutorial001.py!} |
|
|
|
``` |
|
|
|
=== "Python 3.10+" |
|
|
|
|
|
|
|
```Python hl_lines="12" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial001_py310.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
=== "Python 3.6+" |
|
|
|
|
|
|
|
```Python hl_lines="14" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial001.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
这将使 `tags` 成为一个由元素组成的列表。不过它没有声明每个元素的类型。 |
|
|
|
|
|
|
@ -21,7 +29,7 @@ |
|
|
|
首先,从 Python 的标准库 `typing` 模块中导入 `List`: |
|
|
|
|
|
|
|
```Python hl_lines="1" |
|
|
|
{!../../../docs_src/body_nested_models/tutorial002.py!} |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial002.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
### 声明具有子类型的 List |
|
|
@ -43,9 +51,23 @@ my_list: List[str] |
|
|
|
|
|
|
|
因此,在我们的示例中,我们可以将 `tags` 明确地指定为一个「字符串列表」: |
|
|
|
|
|
|
|
```Python hl_lines="14" |
|
|
|
{!../../../docs_src/body_nested_models/tutorial002.py!} |
|
|
|
``` |
|
|
|
=== "Python 3.10+" |
|
|
|
|
|
|
|
```Python hl_lines="12" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial002_py310.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
=== "Python 3.9+" |
|
|
|
|
|
|
|
```Python hl_lines="14" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial002_py39.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
=== "Python 3.6+" |
|
|
|
|
|
|
|
```Python hl_lines="14" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial002.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
## Set 类型 |
|
|
|
|
|
|
@ -55,9 +77,23 @@ Python 具有一种特殊的数据类型来保存一组唯一的元素,即 `se |
|
|
|
|
|
|
|
然后我们可以导入 `Set` 并将 `tag` 声明为一个由 `str` 组成的 `set`: |
|
|
|
|
|
|
|
```Python hl_lines="1 14" |
|
|
|
{!../../../docs_src/body_nested_models/tutorial003.py!} |
|
|
|
``` |
|
|
|
=== "Python 3.10+" |
|
|
|
|
|
|
|
```Python hl_lines="12" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial003_py310.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
=== "Python 3.9+" |
|
|
|
|
|
|
|
```Python hl_lines="14" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial003_py39.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
=== "Python 3.6+" |
|
|
|
|
|
|
|
```Python hl_lines="1 14" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial003.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
这样,即使你收到带有重复数据的请求,这些数据也会被转换为一组唯一项。 |
|
|
|
|
|
|
@ -79,17 +115,45 @@ Pydantic 模型的每个属性都具有类型。 |
|
|
|
|
|
|
|
例如,我们可以定义一个 `Image` 模型: |
|
|
|
|
|
|
|
```Python hl_lines="9 10 11" |
|
|
|
{!../../../docs_src/body_nested_models/tutorial004.py!} |
|
|
|
``` |
|
|
|
=== "Python 3.10+" |
|
|
|
|
|
|
|
```Python hl_lines="7-9" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial004_py310.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
=== "Python 3.9+" |
|
|
|
|
|
|
|
```Python hl_lines="9-11" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial004_py39.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
=== "Python 3.6+" |
|
|
|
|
|
|
|
```Python hl_lines="9-11" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial004.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
### 将子模型用作类型 |
|
|
|
|
|
|
|
然后我们可以将其用作一个属性的类型: |
|
|
|
|
|
|
|
```Python hl_lines="20" |
|
|
|
{!../../../docs_src/body_nested_models/tutorial004.py!} |
|
|
|
``` |
|
|
|
=== "Python 3.10+" |
|
|
|
|
|
|
|
```Python hl_lines="18" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial004_py310.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
=== "Python 3.9+" |
|
|
|
|
|
|
|
```Python hl_lines="20" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial004_py39.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
=== "Python 3.6+" |
|
|
|
|
|
|
|
```Python hl_lines="20" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial004.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
这意味着 **FastAPI** 将期望类似于以下内容的请求体: |
|
|
|
|
|
|
@ -122,9 +186,23 @@ Pydantic 模型的每个属性都具有类型。 |
|
|
|
|
|
|
|
例如,在 `Image` 模型中我们有一个 `url` 字段,我们可以把它声明为 Pydantic 的 `HttpUrl`,而不是 `str`: |
|
|
|
|
|
|
|
```Python hl_lines="4 10" |
|
|
|
{!../../../docs_src/body_nested_models/tutorial005.py!} |
|
|
|
``` |
|
|
|
=== "Python 3.10+" |
|
|
|
|
|
|
|
```Python hl_lines="2 8" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial005_py310.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
=== "Python 3.9+" |
|
|
|
|
|
|
|
```Python hl_lines="4 10" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial005_py39.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
=== "Python 3.6+" |
|
|
|
|
|
|
|
```Python hl_lines="4 10" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial005.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
该字符串将被检查是否为有效的 URL,并在 JSON Schema / OpenAPI 文档中进行记录。 |
|
|
|
|
|
|
@ -132,9 +210,23 @@ Pydantic 模型的每个属性都具有类型。 |
|
|
|
|
|
|
|
你还可以将 Pydantic 模型用作 `list`、`set` 等的子类型: |
|
|
|
|
|
|
|
```Python hl_lines="20" |
|
|
|
{!../../../docs_src/body_nested_models/tutorial006.py!} |
|
|
|
``` |
|
|
|
=== "Python 3.10+" |
|
|
|
|
|
|
|
```Python hl_lines="18" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial006_py310.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
=== "Python 3.9+" |
|
|
|
|
|
|
|
```Python hl_lines="20" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial006_py39.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
=== "Python 3.6+" |
|
|
|
|
|
|
|
```Python hl_lines="20" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial006.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
这将期望(转换,校验,记录文档等)下面这样的 JSON 请求体: |
|
|
|
|
|
|
@ -169,9 +261,23 @@ Pydantic 模型的每个属性都具有类型。 |
|
|
|
|
|
|
|
你可以定义任意深度的嵌套模型: |
|
|
|
|
|
|
|
```Python hl_lines="9 14 20 23 27" |
|
|
|
{!../../../docs_src/body_nested_models/tutorial007.py!} |
|
|
|
``` |
|
|
|
=== "Python 3.10+" |
|
|
|
|
|
|
|
```Python hl_lines="7 12 18 21 25" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial007_py310.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
=== "Python 3.9+" |
|
|
|
|
|
|
|
```Python hl_lines="9 14 20 23 27" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial007_py39.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
=== "Python 3.6+" |
|
|
|
|
|
|
|
```Python hl_lines="9 14 20 23 27" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial007.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
!!! info |
|
|
|
请注意 `Offer` 拥有一组 `Item` 而反过来 `Item` 又是一个可选的 `Image` 列表是如何发生的。 |
|
|
@ -186,9 +292,17 @@ images: List[Image] |
|
|
|
|
|
|
|
例如: |
|
|
|
|
|
|
|
```Python hl_lines="15" |
|
|
|
{!../../../docs_src/body_nested_models/tutorial008.py!} |
|
|
|
``` |
|
|
|
=== "Python 3.9+" |
|
|
|
|
|
|
|
```Python hl_lines="13" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial008_py39.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
=== "Python 3.6+" |
|
|
|
|
|
|
|
```Python hl_lines="15" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial008.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
## 无处不在的编辑器支持 |
|
|
|
|
|
|
@ -218,9 +332,17 @@ images: List[Image] |
|
|
|
|
|
|
|
在下面的例子中,你将接受任意键为 `int` 类型并且值为 `float` 类型的 `dict`: |
|
|
|
|
|
|
|
```Python hl_lines="15" |
|
|
|
{!../../../docs_src/body_nested_models/tutorial009.py!} |
|
|
|
``` |
|
|
|
=== "Python 3.9+" |
|
|
|
|
|
|
|
```Python hl_lines="7" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial009_py39.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
=== "Python 3.6+" |
|
|
|
|
|
|
|
```Python hl_lines="9" |
|
|
|
{!> ../../../docs_src/body_nested_models/tutorial009.py!} |
|
|
|
``` |
|
|
|
|
|
|
|
!!! tip |
|
|
|
请记住 JSON 仅支持将 `str` 作为键。 |
|
|
|