FastAPI+pydantic+SQLAlchemy返回多个数据
2022/1/23 19:04:10
本文主要是介绍FastAPI+pydantic+SQLAlchemy返回多个数据,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
问题
比如在ORM中查询all
, 那么使用pydantic.from_orm
获取对应的数据呢?
解决思路
只需要, 将一个字段对应为List
, 元素为对应SQLAlchemy
的pydantic
模型即可
pydantic
模型要设置orm_mode
为True
例子
schemas.py
定义模型
# 对应ORM的数据 class Note(BaseModel): nid: int content: str created_at: datetime updated_at: datetime class Config: orm_mode = True # 需要设置orm_mode为True # 要返回的模型 class Notes(BaseModel): status: str msg: str data: List[Note]
crud.py
用于增删改查
def query_note_all(session: Session, offset: int, limit: int) -> List[schemas.Note]: """ 查询note全部数据 :param session: ORM 的 session :param offset: 跳过多少数据 :param limit: 取多少条数据 :return: Note列表 """ notes = session.execute( select(Note).where(Note.is_active == True).limit(limit).offset(offset) ).scalars().all() return notes
注意这里的scalars().all()
等同于1.x
版本的query().all()
, 见: 1.x与2.0的ORM接口对比
main.py
用于定义FastAPI
代码
@app.get("/data", response_model=schemas.Notes) async def get_note_date(offset: Optional[int] = 0, limit: Optional[int] = 10, session: Session = Depends(get_session)): notes = crud.query_note_all(session, offset=offset, limit=limit) return { "status": 1, "data": notes, "msg": "获取成功", }
这篇关于FastAPI+pydantic+SQLAlchemy返回多个数据的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-01UniApp 中组件的生命周期是多少-icode9专业技术文章分享
- 2024-11-01如何使用Svg Sprite Icon简化网页图标管理
- 2024-10-31Excel数据导出课程:新手从入门到精通的实用教程
- 2024-10-31Excel数据导入课程:新手入门指南
- 2024-10-31RBAC的权限课程:新手入门教程
- 2024-10-31Svg Sprite Icon课程:新手入门必备指南
- 2024-10-31怎么配置 L2TP 允许多用户连接-icode9专业技术文章分享
- 2024-10-31怎么在FreeBSD上 安装 OpenResty-icode9专业技术文章分享
- 2024-10-31运行 modprobe l2tp_ppp 时收到“module not found”消息提醒是什么-icode9专业技术文章分享
- 2024-10-31FreeBSD的下载命令有哪些-icode9专业技术文章分享