我试图在集合中找到给定键等于数组中某个字符串的所有文档。
这是集合的一个例子。
{
roomId = 'room1',
name = 'first'
},
{
roomId = 'room2',
name = 'second'
},
{
roomId = 'room3',
name = 'third'
}
这是一个要查看的数组示例。
[ 'room2', 'room3' ]
我认为可行的是......
collection.find({ roomId : { $in : [ 'room2', 'room3' ]}}, function( e, r )
{
// r should return the second and third room
});
我怎样才能做到这一点?
这可以解决的一种方法是做一个for循环......
var roomIds = [ 'room2', 'room3' ];
for ( var i=0; i < roomIds.length; i++ )
{
collection.find({ id : roomIds[ i ]})
}
但这不太理想......
答案 0 :(得分:7)
您发布的内容应该有效 - 无需循环播放。 $in
运算符完成了这项工作:
> db.Room.insert({ "_id" : 1, name: 'first'});
> db.Room.insert({ "_id" : 2, name: 'second'});
> db.Room.insert({ "_id" : 3, name: 'third'});
> // test w/ int
> db.Room.find({ "_id" : { $in : [1, 2] }});
{ "_id" : 1, "name" : "first" }
{ "_id" : 2, "name" : "second" }
> // test w/ strings
> db.Room.find({ "name" : { $in : ['first', 'third'] }});
{ "_id" : 1, "name" : "first" }
{ "_id" : 3, "name" : "third" }
这不是你所期望的吗?
使用MongoDB 2.1.1进行测试