Sıralama değiştirici için hiçbir belge bulamıyorum. Tek içgörü birim testlerinde: spec.lib.query.js # L12
writer.limit(5).sort(['test', 1]).group('name')
Ama benim için işe yaramıyor:
Post.find().sort(['updatedAt', 1]);
Sıralama değiştirici için hiçbir belge bulamıyorum. Tek içgörü birim testlerinde: spec.lib.query.js # L12
writer.limit(5).sort(['test', 1]).group('name')
Ama benim için işe yaramıyor:
Post.find().sort(['updatedAt', 1]);
Yanıtlar:
Mongoose'da, aşağıdaki yollardan biriyle bir sıralama yapılabilir:
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]]}
işe yaramayacak, ama .sort([['date', -1]])
işe yarayacak. Bu yanıta bakın: stackoverflow.com/a/15081087/404699
Firavun faresi 2.3.0'da bu şekilde çalışmaya başladım :)
// 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
artık saha seçimi için - bu olmak zorunda String
yaObject
null
o bölümü çekebilirsiniz (en az 3.8'de)
Mongoose 3.8.x itibariyle:
model.find({ ... }).sort({ field : criteria}).exec(function(err, model){ ... });
Nerede:
criteria
olabilir asc
, desc
, ascending
, descending
, 1
, ya da-1
GÜNCELLEME:
Post.find().sort({'updatedAt': -1}).all((posts) => {
// do something with the array of posts
});
Deneyin:
Post.find().sort([['updatedAt', 'descending']]).all((posts) => {
// do something with the array of posts
});
.sort("updatedAt", -1)
.
.sort({updatedAt: -1})
ya da .sort('-updatedAt')
.
exec(function (posts) {…
yerineall
all() must be used after where() when called with these arguments
... Gelincik 4.6.5 yılında
Firavun faresi v5.4.3
artan sıraya göre sırala
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) { ... });
azalan sıraya göre sırala
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) { ... });
Ayrıntılar için: https://mongoosejs.com/docs/api.html#query_Query-sort
Güncelleme
Bu insanları kafa karıştırıyorsa daha iyi bir yazı var; belgeleri bulma ve sorguların tek renkli el kitabında nasıl çalıştığını kontrol edin . Akıcı api'yi kullanmak istiyorsanız, find()
yönteme geri çağrı sağlayarak bir sorgu nesnesi alabilirsiniz , aksi takdirde parametreleri aşağıda özetlediğim gibi belirtebilirsiniz.
orijinal
Bir model
nesne göz önüne alındığında , Model üzerindeki dokümanlar uyarınca şu şekilde çalışabilir 2.4.1
:
Post.find({search-spec}, [return field array], {options}, callback)
search spec
Bir nesneyi beklediğini, ancak geçebilir null
veya boş bir nesne.
İkinci parametre, bir dize dizisi olarak alan listesidir, bu nedenle ['field','field2']
veya sağlarsınız null
.
Üçüncü parametre, sonuç kümesini sıralama yeteneğini içeren bir nesne olarak seçeneklerdir. Sen kullanırsınız { sort: { field: direction } }
nerede field
dize AlanAdı olan test
(senin durumunda) ve direction
bir sayıdır 1
artan ve -1
desceding edilir.
Son parametre ( callback
), sorgu tarafından döndürülen belgelerin toplanmasını alan geri arama işlevidir.
Model.find()
(Bu versiyonda en) uygulaması isteğe bağlı params işlemek için özellikler sürgülü tahsisini yapar (beni karıştı budur!):
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
Bu şekilde mongoose.js 2.0.4'te çalışmaya başladım
var query = EmailModel.find({domain:"gmail.com"});
query.sort('priority', 1);
query.exec(function(error, docs){
//...
});
Mongoose 4'te sorgu oluşturucu arayüzü ile zincirleme.
// 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
})
Sorgular hakkında daha fazla bilgi için dokümanlara bakın .
yalnızca tek bir sütuna göre sıralamak istiyorsanız, mongoose'un (1.6.0) geçerli sürümü ile diziyi bırakmanız ve nesneyi doğrudan sort () işlevine geçirmeniz gerekir:
Content.find().sort('created', 'descending').execFind( ... );
bunu düzeltmem için bana biraz zaman ayırdı :(
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)
})
})
Çıktı
[ { _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 } ]
Ben sıralamak ve doldurmak nasıl başardı:
Model.find()
.sort('date', -1)
.populate('authors')
.exec(function(err, docs) {
// code here
})
Diğerleri benim için çalıştı, ama bu işe yaradı:
Tag.find().sort('name', 1).run(onComplete);
Yaptığım şey bu, iyi çalışıyor.
User.find({name:'Thava'}, null, {sort: { name : 1 }})
4.x'ten itibaren sıralama yöntemleri değiştirildi. > 4.x kullanıyorsanız. Aşağıdakilerden herhangi birini kullanmayı deneyin.
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) => {...});