我现在通过mongoose查询得到的一组集合类似这样:
[{
_id: "123456",
sex: 0
},{
_id: "222222",
sex: 1
},{
_id: "111111",
sex: 1
},{
_id: "333333",
sex: 0
}]
我希望能得排序成这样:
[{
_id: "123456",
sex: 0
},{
_id: "333333",
sex: 0
},{
_id: "111111",
sex: 1
},{
_id: "222222",
sex: 1
}]
即在 sex
升序的条件下, _id
再升序。我目前是在mongoose查询时设置:
options: {
sort: {
_id: 1
}
}
这样就变成了一个_id
升序的数组了,然后在前端进行循环操作来排序的。有没有什么好办法在数据库查询时直接能排好。
For reference:
collection.find({}).sort({'sex': 1,'_id':1}).exec(callback)
Love MongoDB! Have Fun!
MongoDB Chinese Community Shenzhen User Conference
This Saturday, let’s make an appointment
Please enter for details