沿着多态树找到一个父级的路径

发布于 2024-09-28 16:49:23 字数 567 浏览 1 评论 0原文

我有一个简单的多态关联

#comment.rb
belongs_to :commentable, :polymorphic => true
has_many :comments, :as => :commentable
#post.rb
has_many  :comments, :as => :commentable                                        
accepts_nested_attributes_for :comments, :allow_destroy => true

,因此在 IRB 中我可以执行 Post.comments 或 Comment.comments。

但是我怎样才能找到父帖子呢?

正如 Comment.post 中那样?

我目前可以通过执行一系列 .commentable 来获得它们。例如 :

Comment.find(1).commentable.commentable
=> Post(:id => ...

I have a simple polymorphic association

#comment.rb
belongs_to :commentable, :polymorphic => true
has_many :comments, :as => :commentable
#post.rb
has_many  :comments, :as => :commentable                                        
accepts_nested_attributes_for :comments, :allow_destroy => true

So in IRB I can do, Post.comments, or Comment.comments.

But how can I find the parent post?

As in Comment.post ?

I can currently get their by doing a series of .commentable's. For example :

Comment.find(1).commentable.commentable
=> Post(:id => ...

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

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

发布评论

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

评论(1

九局 2024-10-05 16:49:23

您可以向上查看列表,例如:

class Comment < ActiveRecord::Base
    def parent_post
      c = self
      c = c.commentable while c.is_a?(Comment)
      c
    end
end

但是如果它们深度嵌套(n db 查询),那么速度可能会非常慢。
如果您需要性能,我建议您只需存储 parent_post_id 和评论。

You can go up the list, e.g.:

class Comment < ActiveRecord::Base
    def parent_post
      c = self
      c = c.commentable while c.is_a?(Comment)
      c
    end
end

But that can get VERY slow if they are deeply nested (n db queries).
I suggest you simply store parent_post_id with comments if you need performance.

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