fastapi 上传文件的同时提交表单

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

fastapi 上传文件的同时提交表单_第1张图片

参考文章:
导入 File 与 Form
HTTP content-type

你可能感兴趣的:(python)