如何在mongoDB中应用多条件查找具有相同键名的条件??
我在MongoDB中有收集:
[{
'name': 'test1',
'brand': 'A'
}, {
'name': 'test2',
'brand': 'B'
}, {
'name': 'test3',
'brand': 'C'
}, {
'name': 'test4',
'brand': 'D'
}]
server.js
app.get('/products', function(request, response) {
// request.query => {'brand': 'A', 'brand: 'B', 'brand': 'C'}
mongoose.model('products').find(request.query, function(err, data) {
response.json(data);
// data shoule be matching only if 'brand': 'A' or 'brand': 'B' or brand: 'C'
});
});
提前致谢:)
答案 0 :(得分:3)
您需要使用$or
operator创建查询对象,如下所示:
var query = { $or: [] };
for (key in req.query)
query.$or.push({ key: request.query[key] });
//=> { $or: [ {brand: 'A'}, {brand: 'B'}, …] }
然后将其用作您的查询
Model.find(query, function(err, data){
res.json(data);
});