Browse Source

🌐 Add Chinese translation for Tutorial - Request - Forms - and - Files (#3249)

Co-authored-by: Sebastián Ramírez <[email protected]>
pull/3455/head
jaystone776 4 years ago
committed by GitHub
parent
commit
c00c2d1ecf
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 38
      docs/zh/docs/tutorial/request-forms-and-files.md
  2. 1
      docs/zh/mkdocs.yml

38
docs/zh/docs/tutorial/request-forms-and-files.md

@ -0,0 +1,38 @@
# 请求表单与文件
FastAPI 支持同时使用 `File``Form` 定义文件和表单字段。
!!! info "说明"
接收上传文件或表单数据,要预先安装 <a href="https://andrew-d.github.io/python-multipart/" class="external-link" target="_blank">`python-multipart`</a>
例如,`pip install python-multipart`。
## 导入 `File``Form`
```Python hl_lines="1"
{!../../../docs_src/request_forms_and_files/tutorial001.py!}
```
## 定义 `File``Form` 参数
创建文件和表单参数的方式与 `Body``Query` 一样:
```Python hl_lines="8"
{!../../../docs_src/request_forms_and_files/tutorial001.py!}
```
文件和表单字段作为表单数据上传与接收。
声明文件可以使用 `bytes``UploadFile`
!!! warning "警告"
可在一个*路径操作*中声明多个 `File``Form` 参数,但不能同时声明要接收 JSON 的 `Body` 字段。因为此时请求体的编码为 `multipart/form-data`,不是 `application/json`
这不是 **FastAPI** 的问题,而是 HTTP 协议的规定。
## 小结
在同一个请求中接收数据和文件时,应同时使用 `File``Form`

1
docs/zh/mkdocs.yml

@ -75,6 +75,7 @@ nav:
- tutorial/cookie-params.md
- tutorial/request-forms.md
- tutorial/request-files.md
- tutorial/request-forms-and-files.md
- tutorial/handling-errors.md
- tutorial/body-updates.md
- 安全性:

Loading…
Cancel
Save