0

我在 mongo shell 中运行这个查询

db.runCommand({ geoSearch : "tablebusiness", near : [106.90, -6.20], maxDistance : 0.053980478460939611, search : { "Prominent" :  15 }, limit : 20 });

我得到了结果。

但是当我运行这个查询时

db.runCommand({ geoSearch : "tablebusiness", near : [106.90, -6.20], maxDistance : 0.053980478460939611, search : { "Prominent" : {gte: 15} }, limit : 20 });

我什么结果都没有。

那么我如何在运行命令 geohaystack 中使用 $gte mongodb?

基本上我想做相当于

db.tablebusiness.find({ "LongitudeLatitude" : { "$nearSphere" : [106.772835, -6.186753], "$maxDistance" : 0.053980478460939611 }, "Prominent" : { "$gte" : 15 }, "indexContents" : { "$all" : [/^soto/, /^nasi/] } }).limit(200);
4

1 回答 1

1

在您的第二个查询中,您指定

"Prominent" : {gte: 15}

而它应该是

"Prominent" : { $gte : 15 }

让我知道这是否只是一个错字。

于 2012-09-11T10:21:11.637 回答