我有三个班
class Post
include Mongoid::Document
include Mongoid::Timestamps
belongs_to :user, :inverse_of => nil
embeds_many :comments, :as => :commentable
field :content, :type => String
end
class Commment
include Mongoid::Document
include Mongoid::Timestamps
belongs_to :user, :inverse_of => nil
embedded_in :commentable, :polymoriphic => true
end
class User
has_many :posts, :dependent => :destroy
field :name, :type => String
end
每当用户创建新评论时,我想将其内容与用户发表的最新评论进行比较。这是我获取用户最新评论的代码:
comments_user=[]
Post.where("comments.user_id" => user.id).
only(:comments).
each {|p| comments_user += p.comments.where(:user_id => user.id).to_a}
latest_comment = comments_user.sort_by{|comment| comment[:updated_at]}.reverse.first
上面的代码给了我结果,但采用的方法效率不高,因为我必须遍历用户评论的所有帖子才能找到最新评论。如果有的话,谁能给我一个更有效的解决这个问题的方法?简单来说,有没有什么办法可以得到这个用户的所有评论?