1
如果我只包括查詢等這如何在Rails中包含範圍模型?
@projects = current_user.projects.all(include: :reviews)
一切就OK了嵌套模式。但Review模型有一定的範圍,我需要在上面的查詢中實現。我想這
@projects = current_user.projects.all(include: :reviews.unreaded)
,並得到錯誤。什麼是正確的方法來做到這一點?