App Engine 实体到字典
将 google app engine 实体(在 python 中)复制到字典对象的好方法是什么?我正在使用 db.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.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
有一个名为
foo
的实体尝试:Having an entity called
foo
try with:试试这个。其中“m”是您希望转换为字典的 Expando 实例。
try this. Where "m" is the instance of the Expando you wish to turn into a dictionary.
这应该有效
This should work
新版本的 Google Cloud Python 客户端库运行得不太顺利。所以这是一个快速修复。
请记住,字符串以 unicode 形式传入并返回,而不是基本字符串。 ;)
The new version of the Google Cloud Python client library doesn't work quite so gracefully. So this is a quick fix.
Remember, the strings are passed in and returned as unicode, not basestring. ;)
接受的答案应该是:
The accepted answer should be: