0

如何获取所有带有评论的文章?我有:

class Article
  include Mongoid::Document

  embeds_many :comments
end

class Comment
  include Mongoid::Document

  embedded_in :article
end
4

2 回答 2

0

在这一刻。这似乎有效:

Article.where(:comments => {"$exists" => true})

$exists是否在这种情况下正确使用了该指令?

于 2012-05-11T03:05:49.783 回答
0

存在评论的文章(因此,不是零)

Article.where(:comments.ne => nil)
于 2012-05-11T03:15:55.947 回答