路径参数声明
借助类型注解。fastapi会自动对request前端请求参数实现自动转换
@app.get("/str/{item}") def get_str(item: str): print(item, type(item)) return "只有永不遏止的奋斗,才能使青春之花,即便是凋谢,也是壮丽的凋谢"
6 <class 'str'>
还有其他的一些比如路径声明先后顺序问题的,这里暂不做研究
详细的可见:FastAPI 基础学习(四) 路径参数 - 麦克煎蛋 - 博客园 (cnblogs.com)
标签:get,fastapi,路径,item,参数,str From: https://www.cnblogs.com/shixiaogu/p/17385626.html