1
我想爲所有帖子創建一個範圍沒有評論...我不明白如何,在模型(通過創建範圍),我可以檢查我的帖子是否有任何評論附加到因爲只有評論似乎知道他們屬於哪個帖子,而不是知道帖子屬於哪個帖子。跨模型範圍 - 軌道3
Post
has_many :comments
Comments
belong_to :post
(請阻止我,如果我錯了)
我想爲所有帖子創建一個範圍沒有評論...我不明白如何,在模型(通過創建範圍),我可以檢查我的帖子是否有任何評論附加到因爲只有評論似乎知道他們屬於哪個帖子,而不是知道帖子屬於哪個帖子。跨模型範圍 - 軌道3
Post
has_many :comments
Comments
belong_to :post
(請阻止我,如果我錯了)
與SQL
Post.includes(:comments).where("comments.id is NULL")
所以範圍
scope :without_comments, includes(:comments).where("comments.id is NULL")
不過還好在這裏使用counter_cache
:http://railscasts.com/episodes/23-counter-cache-column