摘要: 可以声明多个请求体参数,例如 item 和 user: from typing import Optional from fastapi import FastAPI from pydantic import BaseModel app = FastAPI() class Item(BaseMode 阅读全文
posted @ 2022-01-26 17:08 Tarzen 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 与使用 Query 为查询参数声明更多的校验和元数据的方式相同,你也可以使用 Path 为路径参数声明相同类型的校验和元数据。 from typing import Optional from fastapi import FastAPI, Path, Query app = FastAPI() @ 阅读全文
posted @ 2022-01-26 16:42 Tarzen 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 额外的校验¶ 我们打算添加约束条件:即使 q 是可选的,但只要提供了该参数,则该参数值不能超过50个字符的长度。 导入 Query¶ 为此,首先从 fastapi 导入 Query: from typing import Optional from fastapi import FastAPI, Q 阅读全文
posted @ 2022-01-26 16:22 Tarzen 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 当你需要将数据从客户端(例如浏览器)发送给 API 时,你将其作为「请求体」发送。 请求体是客户端发送给 API 的数据。响应体是 API 发送给客户端的数据。 你不能使用 GET 操作(HTTP 方法)发送请求体。 要发送数据,你必须使用下列方法之一:POST(较常见)、PUT、DELETE 或  阅读全文
posted @ 2022-01-26 16:00 Tarzen 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 不属于路径参数时,它们将被自动解释为"查询字符串"参数 from fastapi import FastAPI app = FastAPI() fake_items_db = [{"item_name": "Foo"}, {"item_name": "Bar"}, {"item_name": "Ba 阅读全文
posted @ 2022-01-26 15:50 Tarzen 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 关于 async 我们先阅读一下廖老师的异步IO https://www.liaoxuefeng.com/wiki/1016959663602400/1017968846697824 路径参数 from fastapi import FastAPI app = FastAPI() @app.get( 阅读全文
posted @ 2022-01-26 15:29 Tarzen 阅读(41) 评论(0) 推荐(0) 编辑
摘要: pydantic enforces type hints at runtime, and provides user friendly errors when data is invalid. Define how data should be in pure, canonical python; 阅读全文
posted @ 2022-01-26 11:42 Tarzen 阅读(293) 评论(0) 推荐(0) 编辑
摘要: from typing import Optional from fastapi import FastAPI from pydantic import BaseModel # 用来声明请求体的库:1.提供运行时类型信息;2.返回友好错误提示 app = FastAPI() class Item(B 阅读全文
posted @ 2022-01-26 11:19 Tarzen 阅读(128) 评论(0) 推荐(0) 编辑
摘要: This module provides runtime support for type hints。 下面的函数接收与返回的都是字符串,注解方式如下: def greeting(name: str) -> str: return name greeting 函数中,参数 name 的类型是 st 阅读全文
posted @ 2022-01-26 10:48 Tarzen 阅读(452) 评论(0) 推荐(0) 编辑
摘要: 创建一个main.py文件 查看代码 from typing import Optional from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} @a 阅读全文
posted @ 2022-01-26 10:21 Tarzen 阅读(238) 评论(0) 推荐(0) 编辑