ReferenceProperty 会影响什么?

发布于 2024-09-06 21:53:36 字数 758 浏览 4 评论 0原文

参考这两个问题(参见下面的链接)和 Google AppEngine 文档,我有点困惑:

class Author(db.Model):
    name = db.StringProperty()

class Story(db.Model):
    author = db.ReferenceProperty(Author)

story = db.get(story_key)
author_name = story.author.name

来源:Google

文档示例表明该对象具有ReferenceProperty 是“所有者”对象,它(可以)具有作为关系项的对象。

下面的链接显示了反之亦然: 具有ReferenceProperty 的对象是“拥有的”对象。 现在我的问题是,什么是正确的,或者我遗漏/误解了 ReferenceProperty 的哪些方面?

In reference to these two questions (see links below) and the Google AppEngine doc, I got a little bit confused:

class Author(db.Model):
    name = db.StringProperty()

class Story(db.Model):
    author = db.ReferenceProperty(Author)

story = db.get(story_key)
author_name = story.author.name

Source: Google

The doc example indicates that the object which has the ReferenceProperty is the "owner" object, which (can have) has such an object as relational item.

The links below show it vice-versa:
The object which has the ReferenceProperty is the "owned" object.
Now my question is, what is right, or what aspect of the ReferenceProperty am I missing/misunderstanding?

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

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

发布评论

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

评论(2

与风相奔跑 2024-09-13 21:53:36

这里的所有权概念纯粹是语义性的,ReferenceProperty 字段仅用于导航性。

The notion of ownership here is purely semantic, ReferenceProperty fields are only used for navigability.

爱的故事 2024-09-13 21:53:36

引用仅意味着引用性(如果您愿意的话,可以是“具有”关系),而不是所有权。在您的示例中,一个故事“有一个”作者。另一种思考方式与在 OO 中使用变量来引用对象的方式相同。

References imply only referentiality - a "has a" relationship, if you like - not ownership. In your example, a Story "has an" Author. Another way to think about it is in the same way you would use a variable to refer to an object in OO.

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