一尘不染

在猫鼬中,如何按日期排序?(node.js)

node.js

假设我在猫鼬中运行此查询:

Room.find({}, function(err,docs){

}).sort({date:-1});

这行不通!


阅读 318

收藏
2020-07-07

共1个答案

一尘不染

在发行版本中,按猫鼬排序已得到发展,因此其中某些答案不再有效。从Mongoose 的 4.1.x
版本开始,date可以通过以下任何一种方式对字段进行降序排序:

Room.find({}).sort('-date').exec(function(err, docs) { ... });
Room.find({}).sort({date: -1}).exec(function(err, docs) { ... });
Room.find({}).sort({date: 'desc'}).exec(function(err, docs) { ... });
Room.find({}).sort({date: 'descending'}).exec(function(err, docs) { ... });
Room.find({}).sort([['date', -1]]).exec(function(err, docs) { ... });
Room.find({}, null, {sort: '-date'}, function(err, docs) { ... });
Room.find({}, null, {sort: {date: -1}}, function(err, docs) { ... });

对于升序排序,省略了-对字符串版本或使用值的前缀1ascascending

2020-07-07