本文介绍了App Engine实体到字典的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
将Google App Engine实体(在python中)复制到字典对象的好方法是什么?我正在使用db.Expando对象.所有属性均为expando属性.
What is a good way to copy a google app engine entity (in python) to a dictionary object? I'm using db.Expando objects. All properties are expando properties.
谢谢!
推荐答案
具有名为foo
的实体,请尝试:
Having an entity called foo
try with:
foo.__dict__
这篇关于App Engine实体到字典的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!