0

当我这样查询时:

collection.find({ "position": { $in: [ 1, 2 ] } }).toArray()....

当我使用$andor时,我得到了正确的结果,$or例如:

collection.find({ $or: [ { "position": 1 }, { "position": 2 }  ] }).toArray()...

我总是得到空的结果

编辑:尝试在控制台中查询时,我得到:

> db.foo.find({"position":{$in:[1,2]}})
{ "name" : "Jon Doe", "position" : 1, "arrival" : "8:00", "_id" :ObjectId("512e2ed286d19b9e4d000001") }
{ "name" : "Jack Smith", "position" : 2, "arrival" : "10:00", "_id" : ObjectId("512e2ed286d19b9e4d000007") }

db.foo.find( { $or : [{"position":1},{"position":2}]} )

  //nothing here

由此,我得到的印象是,我的代码还可以,问题出在其他地方……

4

2 回答 2

2

您需要使用较新版本的 Mongo。版本 > 1.6支持它。

请参阅更改日志

于 2013-03-01T16:17:23.093 回答
2

查询这样的事情,

> db.foo.find({"x":{$in:[1,2]}})
{ "_id" : ObjectId("513046c8ec1e5e38449f1789"), "x" : 1, "y" : 2 }
{ "_id" : ObjectId("5130cdfdf8378ccc2005bcf2"), "x" : 2 }
> 

> db.foo.find( { $or : [{"x":1},{"x":2}]} )
{ "_id" : ObjectId("513046c8ec1e5e38449f1789"), "x" : 1, "y" : 2 }
{ "_id" : ObjectId("5130cdfdf8378ccc2005bcf2"), "x" : 2 }
> 
于 2013-03-01T15:54:16.137 回答