如何在 AppEngine 中获取所有实体类型

发布于 2024-11-17 18:44:21 字数 235 浏览 3 评论 0原文

如何从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小红帽 2024-11-24 18:44:22

查看 http://code.google.com/appengine/docs/python /datastore/metadataqueries.html 并查找

q = Kind.all()

这就是您需要的代码片段。

Look in http://code.google.com/appengine/docs/python/datastore/metadataqueries.html and look for

q = Kind.all()

That's the snippet you need.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文