如何在 AppEngine 中获取所有实体类型
如何从 appengine 中的数据存储区检索所有实体类型?例如,在我的 ORM 中,我定义了:
class Person(db.Model):
# fields here...
class Employee(db.Model):
# fields here...
我想要一种方法来获取列表中的“Employee”和“Person”,而不是实际数据。
提前致谢!
How can I retrieve all of the entity types from the datastore in appengine? For examaple, in my ORM I have defined:
class Person(db.Model):
# fields here...
class Employee(db.Model):
# fields here...
I want a way to get "Employee" and "Person" in a list, but not the actual data.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 http://code.google.com/appengine/docs/python /datastore/metadataqueries.html 并查找
这就是您需要的代码片段。
Look in http://code.google.com/appengine/docs/python/datastore/metadataqueries.html and look for
That's the snippet you need.