【微信小程序】云开发模糊查找功能实现
//连接数据库
const db = wx.cloud.database()
var that = this
db.collection(‘newsname’).where({
//使用正则查询,实现对搜索的模糊查询
_name: db.RegExp({
regexp: value,
//从搜索栏中获取的value作为规则进行匹配。
options: ‘i’,
//大小写不区分
})
}).get...
转载
2019-04-26 22:56:23 ·
6596 阅读 ·
0 评论