引用许多自身的模型?
给定以下类,我如何允许节点与其他节点(例如 parent_node
和 child_nodes
)具有多对多关系?
class Node
include MongoMapper::Document
key :text, String
end
Given the following class, how would I allow a node to have a many to many relationship with other nodes (such as parent_node
and child_nodes
)?
class Node
include MongoMapper::Document
key :text, String
end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
孩子可以有多个父母吗?如果没有,many/belongs_to 应该可以正常工作:
如果节点可以有多个父节点......
这就是您正在寻找的吗?
Can children have more than one parent? If not, many/belongs_to should work fine:
If nodes can have multiple parents...
Is that what you're looking for?