2

我需要在树中收集所有作者,例如:

parent
|
+- child #1
|
+- child #1
|  |
|  +- grand child #1
|  |
|  +- grand child #2
|
+- child #2
...

(原始帖子可以有 n 个孩子,每个孩子也可以有 m 个孩子。原始帖子的最大深度为 2:帖子 - 孩子 - 孙子)

Ruby on Rails 中收集所有作者(post belongs_to author)的最佳方法是什么?我目前的方法如下,但它似乎不是很有效:

def all_authors_in(post)
  @authors = Array.new
  @authors << post.author

  post.children.each do |child|
    @authors << child.author
    child.children.each do |grandchild| 
      @authors << grandchild.author
    end
  end

  @authors.map{|u| u.id}.uniq
end

模型中的一些代码:

class Post < ActiveRecord::Base
  belongs_to :parent, class_name: 'Post'
  has_many :children, foreign_key: :parent_id, class_name: 'Post', :dependent => :destroy
#...
end

谢谢

4

1 回答 1

1

我假设您正在为您的模型使用单表继承Post,但您没有说您是否推出了自己的版本。我建议使用祖先 gem。然后你可以做一些像这样简单的事情:

@authors = post.subtree.collect(&:author).uniq
于 2012-10-27T17:42:53.000 回答