現(xiàn)在互聯(lián)網(wǎng)上FastAPI的資源灰常的少,感謝老師的總結(jié)和分享,精品中的精品課程!
2021-03-12
最新回答 / duskash
個人感覺這是個好問題fastapi.response 下面, 有多種類型的對象, 例如 HTTPResponse, JSONResponse, FileResponse, StreamResponse 等感覺你的問題可以返回一個自定義的 JSONResponse 來解決除了這些對象, 還有一個終極大殺招. 就是調(diào)用一個更“一般”的 Response 類你可以傳遞一個字典到這個類里面, 想傳什么數(shù)據(jù)隨意
2021-03-10
db: Session = Depends(get_db) 這個依賴注入多次出現(xiàn)在路由函數(shù)(視圖層)上,是不是不妥?我覺得應該將db放到數(shù)據(jù)層
2021-03-07
最贊回答 / JupiterXue
https://github.com/tiangolo/full-stack-fastapi-postgresql前端:Vue后端:FastAPI數(shù)據(jù)庫:PostgreSQL?部署:Docker不一定用得到 Docker,不過代碼風格和 FastAPI 文件結(jié)構(gòu)如何組織值得借鑒。
2021-03-03
date = Column(Date, nullable=False, comment='數(shù)據(jù)日期')
這個定義完后總是報錯:
ValueError: Couldn't parse date string '1614556800000' - value is not a string.
這個定義完后總是報錯:
ValueError: Couldn't parse date string '1614556800000' - value is not a string.
2021-03-01