mongoose find and sort

今天是 message 未排序,试着在从 mongo 获得数据的同时给数据排序。

mongoDB 方法
// 正序
db.collection.find().sort({name:1})
// 倒序
db.collection.find().sort({name:-1})

试着用这个语法在 mongoose 试,error

mongoose 方法
// 正序
Model.find()
    .sort({name:1})
    .exec(callback);
// 倒序
Model.find()
    .sort({name:-1})
    .exec(callback);

你可能感兴趣的:(mongoose find and sort)