微信小程序模糊查询云开发

    let key = "编程";
console.log("查询的内容", key)
const db = wx.cloud.database();
const _ = db.command
db.collection(‘qcl‘).where(_.or([{
name: db.RegExp({
regexp: ‘.*‘ + key,
options: ‘i‘,
})
},
{
address: db.RegExp({
regexp: ‘.*‘ + key,
options: ‘i‘,
})
}
])).get({
success: res => {
console.log(res)
},
fail: err => {
console.log(err)
}
})
key就是我们要搜索的关键字。主要是用到了数据库查询的where,or,get方法。

微信小程序模糊查询云开发

原文:https://www.cnblogs.com/lks6/p/14783510.html

以上是微信小程序模糊查询云开发的全部内容。
THE END
分享
二维码
< <上一篇
下一篇>>