Mr. Liu's technology blog
FastAPI-6:Query库详解 FastAPI-6:Query库详解
FastAPI-6:Query库详解可选参数上篇讲过查询参数可以不是必传的,可以是可选参数 from fastapi import FastAPI from typing import Optional import uvicorn ap
FastAPI-5:查询参数Query Parameters FastAPI-5:查询参数Query Parameters
FastAPI-5:查询参数Query Parameters什么是查询参数?http://localhost:8080/get?name=xxx&age=18 http://localhost:8080/get?age=18&
FastAPI-4:路径参数Path Parameters FastAPI-4:路径参数Path Parameters
FastAPI-4:路径参数Path Parameters什么是路径 假设一个 url 是:http://127.0.0.1:8080/items/abcd 那么路径 path 就是:/items/abcd 路径参数就是将路径上的某一部分
FastAPI-3:uvicorn.run() FastAPI-3:uvicorn.run()
FastAPI-3:uvicorn.run()Uvicorn 基于 uvloop 和 httptools 构建的非常快速的 ASGI 服务器; 它不是一个 Web 框架,而是一个服务器; 例如,他不是一个提供路径路由的框架,这是 FastA
FastAPI-2:快速入门 FastAPI-2:快速入门
FastAPI-2:快速入门安装pip install fastapi # 将来需要将应用程序部署到生产环境可以安装 uvicorn 作为服务器 pip install uvicorn 最简单的代码栗子from fastapi impor
FastAPI-1:介绍 FastAPI-1:介绍
FastAPI-1:介绍前言为啥要学它呢,因为学 Flask 的时候发现有人更推荐它代替 Flask ,看了下介绍,感觉很强,而且也能拿来做平台,当然学起来!卷起来! 为什么要是用FastAPI? 日渐没落的是后端HTML渲染这种方式,比如
6 / 6