db.places.aggregate([
{
$geoNear: {
near: { type: "Point", coordinates: [ -73.99279 , 40.719296 ] },
distanceField: "dist.calculated",
maxDistance: 2,
query: { type: "public" },
includeLocs: "dist.location",
num: 5,
spherical: true
}
}
])
我在mongodb中使用聚合方法。这对我有用但我需要在文档上进行投影,只返回一些字段来显示。那么如何在这个方法中实现投影