Skip to content

第五章 FastAPI + sqlmodel Demo

FastAPI初试

FastAPI很短平快,以下首个试跑程序。

from fastapi import FastAPI  # (1)!

app = FastAPI()  # (2)!


@app.get("/")  # (3)!
async def home():
    return {"message": "Hello, World!"}

vscode运行截图

浏览器访问截图

处理请求参数

路径参数

查询参数

请求体

表单数据与文件上传

请求头和cookies

请求体

定制请求

路径操作参数

响应参数

发起HTTP错误

构建定制响应

多路由大项目的程序结构

总结