我的模型是这样的:
Collection = new Schema({
name: {type: String, required: true},
tags: [String],
movies: [{_id: false,
original_title: {type: String}}]
)};
我需要更改以下查询,以便使用“req.body”(字符串数组)不仅在“tags”数组中找到匹配项,还可以在movies数组中找到与“original_title”字段匹配的项。
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);
最佳答案
试试这个:
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);
关于javascript - Mongoose查询在对象数组的对象字段中查找“字符串”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43376004/