尝试返回与特定用户撰写的文章相关的所有评论。 以下代码给出了错误:
undefined method `joins' for #<User:0x000001042c8bc0>
在Rails 3.1下
class User
has_many :articles
def comments
self.joins(:articles => :comments)
end
end
答案 0 :(得分:2)
你可能想要has_many :through
。
class User
has_many :articles
has_many :comments, :through => :articles
end