【发布时间】:2011-12-18 20:17:17
【问题描述】:
我需要查询特定用户的所有帖子,并包括所有cmet和属于该评论的用户。
class User < ...
has_many :posts
has_many :comments
end
class Post < ...
belongs_to :user
has_many :comments
end
class Comment < ...
belongs_to :user
belongs_to :post
end
@posts = current_user.posts.include(:comments)
是否可以同时获得评论用户?我列出了很多帖子和cmets。我不想查询每个评论用户。
谢谢/托拜厄斯
【问题讨论】:
标签: ruby-on-rails-3 activerecord relationship