Rails 包含嵌套关系

发布于 2024-12-22 04:55:42 字数 368 浏览 0 评论 0原文

我需要查询特定用户的所有帖子,并包括所有评论和属于该评论的用户。

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)

是否也可以获得评论用户?我列出了很多帖子和评论。我不想查询每个评论用户。

谢谢/托比亚斯

I need to query all posts from a specific user and include all comments and the user who belongs to the comment.

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)

Is is possible to also get the comment user? I list a lot of posts and comments. I do not want to query each comment user.

Thx / Tobias

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

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

发布评论

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

评论(2

绮筵 2024-12-29 04:55:42

尝试

@posts = current_user.posts.includes( :comments => :user)

此处阅读更多相关信息

Try

@posts = current_user.posts.includes( :comments => :user)

Read more about it here

风吹雨成花 2024-12-29 04:55:42

包含在关系定义语句中怎么样?

:包括
指定加载此对象时应立即加载的二阶关联。

class Post <
  belongs_to :user
  has_many :comments, :include => [:user], :limit => 5
end

How about include at the relation definition statement?

:include
Specify second-order associations that should be eager loaded when this object is loaded.

class Post <
  belongs_to :user
  has_many :comments, :include => [:user], :limit => 5
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文