在 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中文網其他相關文章!