我正在尝试使用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结果我做错了什么?
答案 0 :(得分:1)