0
可以說一個作者有很多帖子,一個帖子有很多評論。 你怎麼能選擇特定作者特定幾篇文章的所有評論?選擇特定帖子的所有評論mongoid 2 rails 3.1
使用案例:我想最近的每一個作者的與標籤「軌道」
@author = Author.find(params[:author_id])
@posts = @author.posts.where(:tag => 'rails')
現在
@comments = @posts.?????.where(:created_at.gte = 1.month.ago)
你能縮短到:Comment.where(:POST_ID => @ posts.map(&:ID)) –