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

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

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

在发行版本中,按猫鼬排序已得到发展,因此其中某些答案不再有效。从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) { ... });

对于升序排序,省略了

-
对字符串版本或使用值的前缀
1
asc
ascending



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5620095.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存