我一直在网上搜索与此相关的东西,但无法。
我有这种攻击
Place.aggregate(
[
{ "$geoNear": {
"near": {
"type": "Point",
"coordinates": [longitude, latitude]
},
"spherical": true,
"distanceField": "distance"
}},
{ $group:
{ _id: "$_id",
name: { '$first': '$name' },
distance: { $first: "$distance" }
}
},
{ $project : {
name: 1,
distance: 1,
}}
],
function(error, places) {
if (error) return callback(error, null);
callback(null, places)
}
);
它有效,但geoNear排序丢失了!
但这给了我正确排序的文档:
Place.aggregate(
[
{ "$geoNear": {
"near": {
"type": "Point",
"coordinates": [longitude, latitude]
},
"spherical": true,
"distanceField": "distance"
}}
],
function(error, places) {
if (error) return callback(error, null);
callback(null, places)
}
);
有什么想法吗?
为了让你知道我在这里试图做什么,我使用进行了完整的查询
Place.aggregate(
[
{ "$geoNear": {
"near": {
"type": "Point",
"coordinates": [longitude, latitude]
},
"spherical": true,
"distanceField": "distance"
}},
{"$unwind": "$participants" } ,
{ $group:
{ _id: "$_id",
name: { '$first': '$name' },
distance: { $first: "$distance" },
person: { $sum: 1 },
sumof:{ $sum: "$participants.age"}
}
},
{ $project : {
name: name,
distance: 1,
person: 1,
meanAge:{ $divide: [ "$sumof", "$person" ]}
}}
],
function(error, places) {
if (error) return callback(error, null);
callback(null, places)
}
);
简而言之,当您使用诸如$group
之类的运算符时,无法保证返回结果的顺序。文档将按照向组pipline进行"输入"的顺序进行处理,以兑现$first
等内容,但输出不一定按照输入的顺序进行。
直接从文档:
$group不对其输出文档进行排序
事实上,你可能会发现顺序是按分组键排列的,但在大多数情况下是相反的。
如果您想要有一个特定的输出顺序,那么请使用$sort
,对于最终的"输出",它应该是您的最后一个管道阶段,所以没有其他东西会更改该顺序。
Place.aggregate(
[
{ "$geoNear": {
"near": {
"type": "Point",
"coordinates": [longitude, latitude]
},
"spherical": true,
"distanceField": "distance"
}},
{ "$unwind": "$participants" } ,
{ "$group": {
"_id": "$_id",
"name": { "$first": "$name" },
"distance": { "$first": "$distance" },
"person": { "$sum": 1 },
"sumof":{ "$sum": "$participants.age" }
}},
{ "$project" : {
"name": 1,
"distance": 1,
"person": 1,
"meanAge": { "$divide": [ "$sumof", "$person" ]}
}},
{ "$sort": { "distance": 1 } }
],
callback
);