fastapi上传文件

2020-07-06  本文已影响0人  heliping_peter

fastapi上传文件

@router.post("/files")
async def create_file(file: bytes = File(...)):
    return {"file_size": len(file)}

postman测试时需要使用form-data格式,参数名为file

上一篇下一篇

猜你喜欢

热点阅读