在 FastAPI 中,要在 POST 请求中同时添加文件和 JSON 正文,可以使用 File 类来处理 File 对象,使用 Body 类来处理 JSON 数据。如何实现这一点的示例:
from fastapi import FastAPI, File, UploadFile, Body app = FastAPI() @app.post("/upload") async def upload_file(file: UploadFile = File(...), data: str = Body(...)): # Do something with the file and data pass
在此示例中,file 参数将处理上传的文件,而 data 参数将处理请求正文中发送的 JSON 数据。
以上是如何在 FastAPI POST 请求中同时接受文件和 JSON 数据?的详细内容。更多信息请关注PHP中文网其他相关文章!