Sails.js $ near查询不起作用并要求索引

时间:2015-01-06 19:06:53

标签: mongodb sails.js mongodb-query sails-mongo

我正在尝试使用MongoDB查询Sails.js中某些坐标的最近点,但是我收到以下错误:

{ [MongoError: can't find any special indices: 2d (needs index), 2dsphere (needs index),  for: { $near: { $geometry: { type: "Point", coordinates: [ "4.3795912", "51.9985675" ] }, $maxDistance: 1000 } }] name: 'MongoError' }

我确定我在bootstrap.js中有这个:

sails.models.location.native(function (err, collection) {
        collection.ensureIndex({ coordinates: '2dsphere' }, function () {


            cb();

        });
    });

我的Location模型看起来像这样:

attributes: {

      coordinates: {
          type: 'json'
      },
      user: {
          model: 'user'
      }
  }

我的控制器代码如下:

Location.native(function(err, collection) {

            var query = {};

            collection.find(
                query.coordinates = {
                    $near: {
                      $geometry: {
                        type: "Point",  
                        coordinates: [
                          user.locations[0].lng, 
                          user.locations[0].lat 
                        ]
                      },
                      $maxDistance : 1000 
                    }
                  }
                ).toArray(function(err, result){
                        if(err) {
                            console.log(err);   
                        }
                        else 

                            return res.json(result);
                });
        });

我很确定我做了我应该做的事情,但显然我做错了什么或者我忘记了什么。任何人都知道如何让这个工作?感谢。

1 个答案:

答案 0 :(得分:0)

我已经解决了这个问题。我做错了两件事。首先,每当我调用sails lift时,我创建的索引都会被删除,我不知道。第二个问题是我的位置点不是正确的GeoJSON格式:

{
          "type": "Point",
          "coordinates": [
            4.373654,
            51.998715
          ]
        }