系列文章:
FastAPI 学习之路(一)fastapi--高性能web开发框架
FastAPI 学习之路(二)
FastAPI 学习之路(三)
FastAPI 学习之路(四)
FastAPI 学习之路(五)
本次分享的是分享的是查询参数,字符串的校验。
我们看一个demo。
from typing import Optional
from fastapi import FastAPI
app = FastAPI()
@app.get(\"/items/\")
def update_items(m: Optional[str] = None):
results = {\"items\": [{\"oneid\": \"shanghai\"}, {\"two\": \"beijing\"}]}
if m:
results.update({\"shanghai\": m})
return results
来源:https://www.cnblogs.com/leiziv5/p/15415977.html
图文来源于网络,如有侵权请联系删除。