2

我正在使用 Mongoose 进行地理空间查询,并且还想使用 populate()。

我是否正确认为 populate() 是 Mongoose 特定的命令并且在使用 executeDbCommand 时不起作用?我尝试了以下方法:

db.db.executeDbCommand({
    geoNear : "geopoints",
    near : [long, lat],
    populate : 'field', <-- doesn't work
    spherical : false, 
    distanceMultiplier:radPerMile,
    maxDistance : maxDis
}, function(err, result){
})

也不

db.db.executeDbCommand({
    geoNear : "geopoints",
    near : long, lat],
    spherical : false, 
    distanceMultiplier:radPerMile,
    maxDistance : maxDis
}, function(err, result){
}).populate('field', function(err, res){
   //also didn't work
})

有什么建议么?

4

4 回答 4

1

我的解决方案类似于“itaylorweb”,但不是映射文档,而是简单地填充它。

geoNear 结果是对象:

{
    dis": 0,
    "obj": { refField: someObjectId}
}

注意填充的路径是不同的,它必须通过“obj”访问。所以:

var query = property.geoNear(
        [parseFloat(req.params.longitude), parseFloat(req.params.latitude)],
        {
          spherical : true,  
          distanceMultiplier: 3959,
          maxDistance : parseFloat(req.params.distance)/3959 
        }, function(err,docs) {
          if (err) throw err;

          // populating user object
          // nothice path!
          property.populate( docs, { path: 'obj.user', select: 'firstname lastname email' }, function(err,properties) {
              if (err) res.json(err);
              res.json(properties);
          });
    });
于 2015-03-03T12:48:42.130 回答
1

我是这样做的:

        var query = property.geoNear(
            [parseFloat(req.params.longitude), parseFloat(req.params.latitude)],
            {
              spherical : true,  
              distanceMultiplier: 3959,
              maxDistance : parseFloat(req.params.distance)/3959 
            }, function(err,docs) {
              if (err) throw err;

              //mapping each doc into new object and populating distance
              docs = docs.map(function(x) {
                var a = new property( x.obj );
                a.distance = x.dis;                 
                return a;
              });

              // populating user object
              property.populate( docs, { path: 'user', select: 'firstname lastname email' }, function(err,properties) {
                  if (err) res.json(err);
                  res.json(properties);
              });
        });
于 2014-06-26T14:02:04.603 回答
1

我正在做类似于 Shahaf H. 和 itaylorweb 的事情,但我没有使用回调。相反,我正在使用承诺..这是我的解决方案:

```

let promise = Campground.geoNear(point, options);
promise.then(populateReview)
       .then((result)=>{ res.send(result);})
       .catch((error)=>{res.status(500).send(error);});

function populateReview(campgrounds) {
   return Campground.populate( campgrounds, {path: 'obj.Reviews', select: 'rating'});
}

```

于 2017-01-06T23:54:00.320 回答
0

这是另一种方式。我不得不改用这种方法来使用查询应用 where 子句:{}

property.aggregate().near(
{ 
    near:[parseFloat(req.params.longitude), parseFloat(req.params.latitude)], 
    distanceField:"distance", 
    spherical:true, 
    distanceMultiplier:3959,
    maxDistance:parseFloat(req.params.distance)/3959,
    query: {
        monthlyFee : { 
                                $gte: parseInt(req.params.minPrice), 
                                $lte: parseInt(req.params.maxPrice)
                    },
        numberOfBedrooms : { $gte: parseInt(req.params.minBedrooms) }
    }
})
.exec(function(err,docs) {
    if (err) res.send(err);

    property.populate( docs, { path: 'user', select: 'firstname lastname email' }, function(err,properties) {
        if (err) res.json(err);
        res.json(properties);
    });

});
于 2014-08-28T16:32:40.123 回答