如何在$ geoNear聚合方法中进行投影

时间:2015-11-30 06:59:26

标签: mongodb mongoose

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中使用聚合方法。这对我有用但我需要在文档上进行投影,只返回一些字段来显示。那么如何在这个方法中实现投影

0 个答案:

没有答案