我有:
class Article
include Mongoid::Document
embeds_many :comments
end
class Comment
include Mongoid::Document
embedded_in :article
end
由于Comment
是Article
. 我将如何按顺序列出所有评论created_at
?
我应该构造它以使 Comment 不是嵌入的,Article
还是有上述模式的方法?
我有:
class Article
include Mongoid::Document
embeds_many :comments
end
class Comment
include Mongoid::Document
embedded_in :article
end
由于Comment
是Article
. 我将如何按顺序列出所有评论created_at
?
我应该构造它以使 Comment 不是嵌入的,Article
还是有上述模式的方法?