//连接数据库
const db = wx.cloud.database()
var that = this
db.collection(‘newsname’).where({
//使用正则查询,实现对搜索的模糊查询
_name: db.RegExp({
regexp: value,
//从搜索栏中获取的value作为规则进行匹配。
options: ‘i’,
//大小写不区分
})
}).get({
success: res => {
console.log(res)
that.setData({
search_list: res.data
})
}
})
原文地址:http://www.manongjc.com/article/57938.html
【微信小程序】云开发模糊查找功能实现
最新推荐文章于 2022-06-21 05:16:58 发布