跨模型范围 - Rails 3

发布于 2024-11-23 20:14:32 字数 195 浏览 1 评论 0原文

我想为没有评论的所有帖子创建一个范围...我不明白如何在模型中(通过创建范围)检查我的帖子是否附加了任何评论,因为只有评论似乎知道什么它们所属的帖子,而不是知道评论属于它的帖子。

Post
has_many :comments

Comments
belong_to :post

(如果我错了,请阻止我。)

I want to create a scope for all Posts without comments... I do not understand how, in the model (by creating a scope), I can check if my Post has any Comments attached to it as only the Comments seem to know what Post they belong to, as opposed to the Post knowing what Comments belong to it.

Post
has_many :comments

Comments
belong_to :post

(Please stop me if I'm wrong.)

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

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

发布评论

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

评论(1

妳是的陽光 2024-11-30 20:14:32

使用sql

Post.includes(:comments).where("comments.id is NULL")

,所以范围是

scope :without_comments, includes(:comments).where("comments.id is NULL")

但最好在这里使用counter_cachehttp ://railscasts.com/episodes/23-counter-cache-column

with sql

Post.includes(:comments).where("comments.id is NULL")

so the scope is

scope :without_comments, includes(:comments).where("comments.id is NULL")

But better to use counter_cache here: http://railscasts.com/episodes/23-counter-cache-column

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