通过数组为一个字段在mongodb中查找文档?

时间:2014-07-10 15:41:32

标签: javascript mongodb mongoose

我试图运行查询以查找包含电话号码数组的所有文档:

例如:

var mobileArray = ["07958485374","07958485375", "07958485378"];

示例文档将是:

{
  phone_number: 07958483297,
  brand: "Mercedes",
  model: "S 350 L",
  year: 2007,
  price: 9500,
  description: "Full options - Automatic transmission - Gulf import - Excellent condition - V6 - Beig leather seats - Screen - Sunroof - CD - DVD - Telephone - Navigation - Xenon - Finger print - Bluetooth - Memory - Cruise control - Sensor - Wood - Clause examination - ",
  images_length: 4,
  _id: ObjectId("53a844d26d437e394844f0a3"),
  date: ISODate("2014-06-23T15:16:34.233Z"),
  __v: 0
}

所以我试图运行查询来查找包含数组中任何这些元素的所有文档,我知道我可以运行for循环,但我宁愿尝试在一个查询中执行它。

我使用mongoose节点模块来查询我的结果。

例如:

 Car.find().where({"phone_number": "0795483297"}).limit(10).exec(function(err, docs) {
       res.send(docs);
  });

1 个答案:

答案 0 :(得分:1)

您应该使用“$ in”运算符:

  

<强> $在

     

$ in运算符选择字段值的文档   等于指定数组中的任何值。

http://docs.mongodb.org/manual/reference/operator/query/in/

使用您的示例,这应该适合您:

Car.find({"phone_number": 
            { $in: ['0795483297', '07958485375', '07958485378']}
          }).limit(10).exec(function(err, docs) {
       res.send(docs);
  });