Google App Engine 多对多对自身
我正在尝试将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不希望相关实体列表中的键超过几百个,则可以使用 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.