“Mongoose Znajdź sort” Kod odpowiedzi

Mongoose Znajdź sort

Post.find({}).sort('test').exec(function(err, docs) { ... });
Post.find({}).sort([['date', -1]]).exec(function(err, docs) { ... });
Post.find({}).sort({test: 1}).exec(function(err, docs) { ... });
Post.find({}, null, {sort: {date: 1}}, function(err, docs) { ... });
Tarik

Sortuj odpowiedź Mongoose

Blah.find({}).sort({date: -1}).execFind(function(err,docs){
//code
});

-1 for descending & 1 for ascending
Philan ISithembiso

Mongoose

// sort by "field" ascending and "test" descending
query.sort({ field: 'asc', test: -1 });

// equivalent
query.sort('field -test');
Depressed Dunlin

Odpowiedzi podobne do “Mongoose Znajdź sort”

Pytania podobne do “Mongoose Znajdź sort”

Więcej pokrewnych odpowiedzi na “Mongoose Znajdź sort” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu