search

Home  >  Q&A  >  body text

javascript - mongoose对查询结果的排序问题

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

滿天的星座滿天的星座2752 days ago771

reply all(1)I'll reply

  • 巴扎黑

    巴扎黑2017-05-02 09:28:10

    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

    reply
    0
  • Cancelreply