gebruik $regex
in mongodb
hoe regex te gebruiken
voorbeeld
select * from table where abc like %v%
in mongo
var colName="v";
models.customer.find({ "abc": { $regex: '.*' + colName + '.*' } },
function(err,data){
console.log('data',data);
});
Uw zoekopdracht ziet eruit als
var name="john";
UserSchema.find({name: { $regex: '.*' + name + '.*' } }).limit(5);