Mongoid嵌入_in宏如何获取父文档?
我一直在思考 Mongoid 提供的一个非常基本的功能;也就是说,能够从嵌入文档引用父文档。如果我做对了,当然对于嵌入文档,父文档 ID 不会存储在子文档中。人们可能会认为你无法从父母手中夺回孩子,但反之亦然。 Embedded_in 如何提供这样的功能?我错过了一些非常简单的事情吗?
I'm stuck figuring out a very basic functionality that Mongoid provides; that is, the ability to reference the parent document from an embedded document. If I get it right, of course for embedded documents the parent document ID is not stored in the child document. One would think then that you can't retrieve children from parents, but not vice-versa. How can embedded_in provide such functionality? Am I missing something really simple?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来我误解了 MongoDB 中查询的工作原理。无法通过全局查询 id 来获取嵌入文档,而只能作为父文档的嵌入字段。我认为这解释了为什么 Mongoid 可以检索父级。
Looks like I misunderstood how queries work in MongoDB. One cannot fetch embedded documents by querying for their id globally, but only as a embedded field of the parent document. I think this explains why Mongoid can retrieve the parent.