$regex
を使用してみてください
$options
を使用
Customer.find({'name': { $regex: 'FOO', $options: 'i' }}).exec(function (err, customer) {
console.log(customer);
})
$regex
を使用してみてください
$options
を使用
Customer.find({'name': { $regex: 'FOO', $options: 'i' }}).exec(function (err, customer) {
console.log(customer);
})