multipart/form-data
: 需要在表单中进行文件上传时,就需要使用该格式
正确的做法:
from fastapi import FastAPI, File, Form, UploadFile
app = FastAPI()
@app.post("/files/")
async def create_file(
file: bytes = File(...), fileb: UploadFile = File(...), token: str = Form(...), name: str = Form(...)
):
return {
"file_size": len(file),
"token": token,
"fileb_content_type": fileb.content_type,
}
注意:根据 HTTP 协议,既然上传文件又要上传文字,这个文字要是 form ,而不能是 json
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。