else if (event.a == 4) //
{
try {
return await db.collection('singleinfo').where({
sex: event.sex,
location: db.RegExp({
regexp: 'event.location$',
options: 'i',
})
// /event.location/i,
}).field({
}).get()
} catch (e) {
console.log(e)
}
event.location传值过来是字符串“北京”,数据库里面有location为北京西城或者北京东城的数据,这样写云函数得不到要查询的数据,请教大佬怎么实现模糊查询呢?
return await db.collection('singleinfo').where({
// role: event.role, //取消推荐角色
sex: event.sex,
location: db.RegExp({
regexp: event.location,
options: 'i',
})
// /event.location/i,
}).field({
不行