例如有一段数据。
var article = {
title: '文章标题',
comments: [
{
content: '#3非常好',
time: '2014-6-14 11:25:05'
},
{
content: '#2非常非常好',
time: '2014-6-15 11:25:05'
},
{
content: '#非常非常好',
time: '2014-6-16 11:25:05'
},
]
}
通过 findOne 查询出来后, 评论是默认 #3,#2,#1排序的,有没有mongodb原生的排序方式,就像是 find中的$sort呢?