Python中model转dict

Posted mitsuhide1992

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python中model转dict相关的知识,希望对你有一定的参考价值。

SQLAlchemy

在query出来的行信息object中有一个dict变量,这个变量存储了字典信息

for u in session.query(User).all():
    print u.__dict__

但是这个变量会多一个属性’_sa_instance_state’,所以还需要在转换字典之后把这个属性去掉:

    dictret = dict(row.__dict__);
    dictret.pop('_sa_instance_state', None)

参考

http://stackoverflow.com/questions/1958219/convert-sqlalchemy-row-object-to-python-dict

以上是关于Python中model转dict的主要内容,如果未能解决你的问题,请参考以下文章

python测试开发django-119.model_to_dict会漏掉DateTimeField字段

Django 2021年最新版教程21数据库查询 model 多条数据 queryse转dict字典 返回渲染到前端

python 中Dict 转 Json

python3 两层dict字典转置

python 中怎么把,list,字典dict转换为字符串

python str转dict