云数据库中怎么调用逻辑函数(“or”)
我想查询 姓名和电话中有skey的集合,你看代码对吗
var skey = this.data.skey;
db.collection("rest").where({
name: {
$regex: '.*' + skey,
$options: 'i'
}
or
tell: {
$regex: '.*' + skey,
$options: 'i'
}
}).get({
success: res => {
console.log(res.data)
this.setData({
list: res.data
})
}