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字段