Fork me on GitHub
摘要: 一、基本使用 查询参数是什么呢?一般前台发送的请求可能是这样的 http://127.0.0.1:8000/items/?skip=0&limit=10 那么"?"之后的就是查询参数每个查询参数直接通过“&”进行连接。查询参数: skip:值为0 limit:值为10 那么在FastAPI的后台就需 阅读全文
posted @ 2021-06-02 21:12 iveBoy 阅读(803) 评论(0) 推荐(0) 编辑
摘要: 一、基本使用 1、基本路径参数 如下: from fastapi import FastAPI app = FastAPI() @app.get("/item/{item_id}") async def read_item(item_id: int): return {"item_id": item 阅读全文
posted @ 2021-06-02 19:39 iveBoy 阅读(652) 评论(0) 推荐(0) 编辑
摘要: 一、FastAPI的特点 基于Python3.6+版本的、用于构建API现代的、高性能的web框架,其有以下特点: 性能优越 开发效率高 减少约40%的人为bug 易学易用 精简编码、代码重复率低 API开发标准化、自带API交互文档,便于交付 FastAPI是建立在Pydantic和Starlet 阅读全文
posted @ 2021-06-02 19:38 iveBoy 阅读(2442) 评论(0) 推荐(0) 编辑
TOP