有一个字段 names:[“张三”,“王五”]
怎么对其进行模糊查询?
where{
names:
db.RegExp({
???,
options: ‘i’
})
}
db.collection(‘xxxx’).where({
names: /(张三|王五)/i
}).get()