Heim >Backend-Entwicklung >Python-Tutorial >Wie löse ich Probleme beim Hochladen leerer Dateien in FastAPI?
Wie lade ich eine Datei mit FastAPI hoch?
Problem:
Bei Verwendung von FastAPI zum Hochladen einer Datei entsprechend Laut offizieller Dokumentation bleibt die Variable file2store erhalten leer.
Ursache:
Lösung:
App. py:
from fastapi import File, UploadFile @app.post("/create_file") def create_file(file: UploadFile = File(...)): try: contents = file.file.read() # store contents to the database except Exception: return {"message": "Error uploading file"} finally: file.file.close() return {"message": f"Successfully uploaded {file.filename}"}
Alternative für Async Endpunkte:
@app.post("/create_file") async def create_file(file: UploadFile = File(...)): try: contents = await file.read() # store contents to the database except Exception: return {"message": "Error uploading file"} finally: await file.close() return {"message": f"Successfully uploaded {file.filename}"}
Mehrere Dateien hochladen:
from fastapi import File, UploadFile from typing import List @app.post("/upload") def upload(files: List[UploadFile] = File(...)): for file in files: try: contents = file.file.read() # store contents to the database except Exception: return {"message": "Error uploading file(s)"} finally: file.file.close() return {"message": f"Successfully uploaded {[file.filename for file in files]}"}
Anfrage vom Python-Skript:
requests.post(url="SERVER_URL/create_file", files={"file": (f.name, f, "multipart/form-data")})
Das obige ist der detaillierte Inhalt vonWie löse ich Probleme beim Hochladen leerer Dateien in FastAPI?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!