Mongoose查询查找'字符串'在对象数组的对象字段中

时间:2017-04-12 17:28:29

标签: javascript mongodb mongoose

我的模型看起来像这样:

Collection = new Schema({
 name: {type: String, required: true},
 tags: [String],
 movies: [{_id: false,
          original_title: {type: String}}]
)};

我需要更改以下查询以使用' req.body' (一系列字符串)不仅可以在'标签中找到匹配项。数组,但也找到与原始标题'匹配的匹配项电影阵列中的字段。

Collection.find({'tags' : { $in : req.body}}, (err, collections) => {           
            if(err){res.status(400).json(err);}

            if(!collections)
            {
                res.status(404).json({message: 'No collections found'});
            }else{
                res.json(collections);
            }
        }).limit(8);

1 个答案:

答案 0 :(得分:3)

试试这个:

db.collection.find({
    $or: [{
            'tags': {
                $in: req.body
            }
        },
        {
            'original_title': {
                $in: req.body
            }
        }
    ]
}, (err, collections) => {
    if (err) {
        res.status(400).json(err);
    }

    if (!collections) {
        res.status(404).json({
            message: 'No collections found'
        });
    } else {
        res.json(collections);
    }
}).limit(8);