微信小程序正则模糊搜索功能实现(云开发)
微信文档关于正则搜索的部分https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-client-api/database/db.regexp.html
一、正则搜索关键代码
db.collection('gucci').where({
//使用正则查询,在collection"gucci"中模糊搜索
name: db.RegExp({
//以name为关键字进行匹配
regexp: this.data.search,
//输入框输入的内容
options: 'i',
//大小写不区分
})
}).get({
success: res => {