mongomapper地理空间'内'查询

时间:2012-03-24 17:06:08

标签: mongodb geospatial mongomapper

我正在尝试使用mongomapper进行'内部'查询。当我在shell中执行命令时,一切正常:

box = [[32.476750,-117.246094],[32.850173,-116.806641]]
db.locations.find({"location" : {"$within" : {"$box" : box}}})
// Bunch of results

然而,当我在rails控制台中运行相同时,我得到nil:

box = [[32.476750,-117.246094],[32.850173,-116.806641]]
Location.find(:location => {"$within" => {"$box" => box}})
 => nil 

如果我做Location.first我得到一个位置,所以我知道我指向正确的数据库集合。我的mongomapper查询返回0结果我做错了什么?

1 个答案:

答案 0 :(得分:1)

啊,我想通了。而不是使用'find'而是使用'where'代替。现在我得到了正确的结果集。