我有三種模型:文章,評論,用戶。獲取某個用戶沒有評論的所有文章
用戶可以對文章發表評論。
這裏是如何得到那裏是沒有註釋的所有文章,但我只希望那些有一定用戶不評論尚未:
Article.includes(:comments).where(:comments => { :id => nil })
更新
class Article
has_many :comments
end
class Comment
belongs_to :article
belongs_to :user
end
class User
has_many : comments
end
你能後的模型之間的關聯? – Pavan