Fork me on GitHub
摘要: 一、Cookie Cookie的定义与声明与Query和Path类似: from typing import Optional from fastapi import Cookie, FastAPI app = FastAPI() @app.get("/items/") async def read 阅读全文
posted @ 2021-06-04 22:54 iveBoy 阅读(944) 评论(0) 推荐(1) 编辑
摘要: 一、请求体和字段 1、基础用法 请求体的数据校验是使用Pydantic来进行声明,然后校验的。 from typing import Optional from fastapi import FastAPI from pydantic import BaseModel class Item(Base 阅读全文
posted @ 2021-06-04 14:56 iveBoy 阅读(1051) 评论(0) 推荐(0) 编辑
TOP