Margatorid 的头像
返回博客
后端

FastAPI 学习笔记

整理 FastAPI 路由、数据校验与异步接口开发中的基础要点。

发布于 2026年9月4日更新于 2026年9月4日阅读约 1 分钟
#Python#FastAPI#API

请求校验

Pydantic 模型可以清晰定义 API 的输入结构与校验规则。

from pydantic import BaseModel

class Item(BaseModel):
    name: str