如何通过Mongoose中的对象数组找到?

时间:2016-07-12 11:08:15

标签: javascript node.js mongodb mongoose mongoose-schema

我有像这样的Mongoose.Schema:

const pixelSchema = mongoose.Schema({
  x: String,
  y: String,
  color: String,
});

我也有这样的对象数组:

let pixels = [
  {x: 0, 1: 0, color: 'blue'},
  {x: 0, y: 1, color: 'blue'},
  {x: 0, y: 2, color: 'blue'},
]

如何检查数据库中是否已存在此元素之一? 我的解决方案现在看起来像这样,但我认为这是非常低效的。

pixels.map(pixel => {
  Pixel.find(pixel, (err, pixels) => {
    if (pixels) {
      console.log('Find!');
    }
  });
});

2 个答案:

答案 0 :(得分:2)

将该数组用作 bind 查询文档的一部分。 index() 运算符允许您对两个或多个表达式的数组执行逻辑OR运算,并选择至少满足其中一个表达式的文档。

所以你的查询到底应该是:

\DeckOfCards.h:21:8: error: 'array' in namespace 'std' does not name a template type

答案 1 :(得分:0)

您可以尝试

let pixels = [
  {x: 0, 1: 0, color: 'blue'},
  {x: 0, y: 1, color: 'blue'},
  {x: 0, y: 2, color: 'blue'}
]

Pixel.find({ "$or": pixels}, function(error, pixel) {
    if(pixel) {
        console.log('Found pixel');
    }
} );