mongoose doc để tìm .
mongodb doc cho regex .
var Person = mongoose.model('Person', yourSchema);
// find each person with a name contains 'Ghost'
Person.findOne({ "name" : { $regex: /Ghost/, $options: 'i' } },
function (err, person) {
if (err) return handleError(err);
console.log('%s %s is a %s.', person.name.first, person.name.last, person.occupation);
});
Lưu ý đối số đầu tiên chúng ta truyền vào hàm mongoose.findOne. "{" name ":{$ regex:/ Ghost /, $ options:'i'}}". "name" là trường của tài liệu bạn đang tìm kiếm. "Ghost" là biểu thức chính quy. "i" là đối sánh không phân biệt chữ hoa chữ thường. Hy vọng điều này sẽ giúp bạn.