网站首页
编程语言
数据库
系统相关
其他分享
编程问答
form
2024-10-26
三周精通FastAPI:14 表单数据和表单模型Form Models
官网文档:表单数据-FastAPI表单数据¶接收的不是JSON,而是表单字段时,要使用 Form表单。fromfastapiimportFastAPI,Formapp=FastAPI()@app.post("/login/")asyncdeflogin(username:str=Form(),password:str=Form()):return{"username":user