fastapi上传文件
@router.post("/files")
async def create_file(file: bytes = File(...)):
return {"file_size": len(file)}
postman测试时需要使用form-data格式,参数名为file
fastapi上传文件
@router.post("/files")
async def create_file(file: bytes = File(...)):
return {"file_size": len(file)}
postman测试时需要使用form-data格式,参数名为file
本文标题:fastapi上传文件
本文链接:https://www.haomeiwen.com/subject/ercwqktx.html
网友评论