Google App Engine 多对多对自身

发布于 2024-09-18 12:39:39 字数 194 浏览 7 评论 0原文

我正在尝试将 django 项目转换为 GAE,我偶然发现了这一点:

(relational-databse)

class Clan(models.Model):
    wars = models.ManyToManyField('self')

如何在非关系数据库(即 gae 数据存储)中执行此操作?

I'm trying to convert a django project for GAE, and I've stumbled upon this:

(relational-databse)

class Clan(models.Model):
    wars = models.ManyToManyField('self')

How can I do this in a non-relational database(i.e. gae datastore)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

[旋木] 2024-09-25 12:39:39

如果您不希望相关实体列表中的键超过几百个,则可以使用 db.ListProperty(db.Key),其中包含引用实体的键。

If you don't expect more than, say, a couple of hundred keys in the list of related entities, you could use a db.ListProperty(db.Key), containing the keys of the referenced entities.

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