微信小程序模糊查询云开发
Posted sunny-cf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序模糊查询云开发相关的知识,希望对你有一定的参考价值。
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方法。
以上是关于微信小程序模糊查询云开发的主要内容,如果未能解决你的问题,请参考以下文章