2021.10.1-10.2FastAPI框架

FastAPI - 优于flask的py web框架

****-参考

FastAPI 可以用 url/docs 查看自动生成的API模型
学习内容见pycharm或我的Gitee

FastAPI与flask不同处:

  1. 装饰器

    • @app.route(’’, methods=[‘POST’])

    • @app.get(’’) @app.post(") @app.put(") @app.delete(")

  2. 路径参数

    • @app.route(’/page/int:num’)

    • @app.get("/items/{item_id}")
      async def read_item(item_id: int):

    • FastAPI还会自动为我们做数据校验的功能,数据验证都是由 Pydantic实现的

    1. 3
      REST接口中,参数有三种方式接收:Path、Query、Header/Body

    Path:http://pandora128.cn/{param}

    Query: http://pandora128.cn?q={param}

    Header/Body:
    {
    ‘param’:‘value’
    }

  3. 4

  4. 5

上一篇:FastAPI 学习之路(一)fastapi--高性能web开发框架


下一篇:FastAPI 学习之路(二)