javascript - mongoose对查询结果的排序问题
滿天的星座
滿天的星座 2017-05-02 09:26:10
0
1
767

我现在通过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升序的数组了,然后在前端进行循环操作来排序的。有没有什么好办法在数据库查询时直接能排好。

滿天的星座
滿天的星座

reply all(1)
巴扎黑

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

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!