Я не знаходжу документа для модифікатора сортування. Єдине розуміння полягає в одиничних тестах: spec.lib.query.js # L12
writer.limit(5).sort(['test', 1]).group('name')
Але це не працює для мене:
Post.find().sort(['updatedAt', 1]);
Я не знаходжу документа для модифікатора сортування. Єдине розуміння полягає в одиничних тестах: spec.lib.query.js # L12
writer.limit(5).sort(['test', 1]).group('name')
Але це не працює для мене:
Post.find().sort(['updatedAt', 1]);
Відповіді:
У Мангузі сортування можна зробити будь-яким із наступних способів:
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) { ... });
{sort: [['date', 1]]}
не буде працювати, але .sort([['date', -1]])
буде працювати. Дивіться цей відповідь: stackoverflow.com/a/15081087/404699
Ось як я почав працювати в мангусті 2.3.0 :)
// Find First 10 News Items
News.find({
deal_id:deal._id // Search Filters
},
['type','date_added'], // Columns to Return
{
skip:0, // Starting Row
limit:10, // Ending Row
sort:{
date_added: -1 //Sort by Date Added DESC
}
},
function(err,allNews){
socket.emit('news-load', allNews); // Do something with the array of 10 objects
})
Array
для вибору поля - це має бути String
абоObject
null
цей розділ (принаймні в 3.8)
Станом на Мангуза 3.8.x:
model.find({ ... }).sort({ field : criteria}).exec(function(err, model){ ... });
Де:
criteria
може бути asc
, desc
, ascending
, descending
, 1
, або-1
ОНОВЛЕННЯ:
Post.find().sort({'updatedAt': -1}).all((posts) => {
// do something with the array of posts
});
Спробуйте:
Post.find().sort([['updatedAt', 'descending']]).all((posts) => {
// do something with the array of posts
});
.sort("updatedAt", -1)
.
.sort({updatedAt: -1})
або .sort('-updatedAt')
.
exec(function (posts) {…
замістьall
all() must be used after where() when called with these arguments
в Мангузі 4.6.5 ...
Мангуст v5.4.3
сортувати по порядку зростання
Post.find({}).sort('field').exec(function(err, docs) { ... });
Post.find({}).sort({ field: 'asc' }).exec(function(err, docs) { ... });
Post.find({}).sort({ field: 'ascending' }).exec(function(err, docs) { ... });
Post.find({}).sort({ field: 1 }).exec(function(err, docs) { ... });
Post.find({}, null, {sort: { field : 'asc' }}), function(err, docs) { ... });
Post.find({}, null, {sort: { field : 'ascending' }}), function(err, docs) { ... });
Post.find({}, null, {sort: { field : 1 }}), function(err, docs) { ... });
сортувати за низхідним порядком
Post.find({}).sort('-field').exec(function(err, docs) { ... });
Post.find({}).sort({ field: 'desc' }).exec(function(err, docs) { ... });
Post.find({}).sort({ field: 'descending' }).exec(function(err, docs) { ... });
Post.find({}).sort({ field: -1 }).exec(function(err, docs) { ... });
Post.find({}, null, {sort: { field : 'desc' }}), function(err, docs) { ... });
Post.find({}, null, {sort: { field : 'descending' }}), function(err, docs) { ... });
Post.find({}, null, {sort: { field : -1 }}), function(err, docs) { ... });
Детальніше: https://mongoosejs.com/docs/api.html#query_Query-sort
Оновлення
Краще написати, якщо це бентежить людей; ознайомтеся з пошуком документів та тим, як працюють запити в посібнику з мангуста. Якщо ви хочете використовувати вільний api, ви можете отримати об'єкт запиту, не надаючи find()
метод зворотного виклику , інакше ви можете вказати параметри, як я окреслив нижче.
Оригінал
Враховуючи model
об’єкт, за документами на Model , це може працювати для 2.4.1
:
Post.find({search-spec}, [return field array], {options}, callback)
search spec
Чекає об'єкт, але ви можете передати null
або порожній об'єкт.
Другий парам - це список поля у вигляді масиву рядків, тому ви б поставили ['field','field2']
або null
.
Третій парам - це параметри як об'єкт, що включає можливість сортування набору результатів. Ви б використовували, { sort: { field: direction } }
де field
ім'я поля рядка test
(у вашому випадку) і direction
є числом, де 1
є висхідним і -1
спадаючим.
Остаточний парам ( callback
) - це функція зворотного виклику, яка отримує колекцію документів, повернуту за запитом.
Model.find()
Реалізації (в цій версії) роблять ковзне розподіл властивостей для обробки додаткового Params (що бентежило мене!):
Model.find = function find (conditions, fields, options, callback) {
if ('function' == typeof conditions) {
callback = conditions;
conditions = {};
fields = null;
options = null;
} else if ('function' == typeof fields) {
callback = fields;
fields = null;
options = null;
} else if ('function' == typeof options) {
callback = options;
options = null;
}
var query = new Query(conditions, options).select(fields).bind(this, 'find');
if ('undefined' === typeof callback)
return query;
this._applyNamedScope(query);
return query.find(callback);
};
HTH
Ось як я почав працювати в mongoose.js 2.0.4
var query = EmailModel.find({domain:"gmail.com"});
query.sort('priority', 1);
query.exec(function(error, docs){
//...
});
Пов’язання з інтерфейсом для створення запитів у Mongoose 4.
// Build up a query using chaining syntax. Since no callback is passed this will create an instance of Query.
var query = Person.
find({ occupation: /host/ }).
where('name.last').equals('Ghost'). // find each Person with a last name matching 'Ghost'
where('age').gt(17).lt(66).
where('likes').in(['vaporizing', 'talking']).
limit(10).
sort('-occupation'). // sort by occupation in decreasing order
select('name occupation'); // selecting the `name` and `occupation` fields
// Excute the query at a later time.
query.exec(function (err, person) {
if (err) return handleError(err);
console.log('%s %s is a %s.', person.name.first, person.name.last, person.occupation) // Space Ghost is a talk show host
})
Докладніше про запити див. У документах .
з поточною версією мангуста (1.6.0), якщо ви хочете сортувати лише за одним стовпцем, вам потрібно скинути масив і передати об'єкт безпосередньо функції sort ():
Content.find().sort('created', 'descending').execFind( ... );
пішло мені трохи часу, щоб зрозуміти це :(
app.get('/getting',function(req,res){
Blog.find({}).limit(4).skip(2).sort({age:-1}).then((resu)=>{
res.send(resu);
console.log(resu)
// console.log(result)
})
})
Вихідні дані
[ { _id: 5c2eec3b8d6e5c20ed2f040e, name: 'e', age: 5, __v: 0 },
{ _id: 5c2eec0c8d6e5c20ed2f040d, name: 'd', age: 4, __v: 0 },
{ _id: 5c2eec048d6e5c20ed2f040c, name: 'c', age: 3, __v: 0 },
{ _id: 5c2eebf48d6e5c20ed2f040b, name: 'b', age: 2, __v: 0 } ]
Ось як мені вдалося сортувати та заповнити:
Model.find()
.sort('date', -1)
.populate('authors')
.exec(function(err, docs) {
// code here
})
Інші працювали на мене, але це:
Tag.find().sort('name', 1).run(onComplete);
Це те, що я зробив, це прекрасно працює.
User.find({name:'Thava'}, null, {sort: { name : 1 }})
Починаючи з 4.x методи сортування були змінені. Якщо ви використовуєте> 4.x. Спробуйте скористатися будь-яким із наведеного нижче.
Post.find({}).sort('-date').exec(function(err, docs) { ... });
Post.find({}).sort({date: -1}).exec(function(err, docs) { ... });
Post.find({}).sort({date: 'desc'}).exec(function(err, docs) { ... });
Post.find({}).sort({date: 'descending'}).exec(function(err, docs) { ... });
Post.find({}).sort([['date', -1]]).exec(function(err, docs) { ... });
Post.find({}, null, {sort: '-date'}, function(err, docs) { ... });
Post.find({}, null, {sort: {date: -1}}, function(err, docs) { ... });
Post.find().sort('updatedAt').exec((err, post) => {...});