如何使用 Node.js 在 MongoDB 中进行类似查询?
这是我的源代码,但它不起作用:
exports.findAll = function(req, res) {
var country=req.params.country;
db.collection('wines', function(err, collection) {
collection.find({ 'country': new RegExp('/'+country+'/i') }).toArray(function(err, items) {
res.jsonp(items);
});
});
};