微信小程序 云开发模糊查询实现解析

这篇文章主要介绍了微信小程序 云开发模糊查询实现详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

解释:

db.RegExp

从基础库 2.3.2 开始(wx-server-sdk 从 0.0.23 开始),数据库支持正则表达式查询,开发者可以在查询语句中使用 JavaScript 原生正则对象或使用 db.RegExp 方法来构造正则对象然后进行字符串匹配。在查询条件中对一个字段进行正则匹配即要求该字段的值可以被给定的正则表达式匹配

事例:

search(e, val) { const _this = this this.screenName = e const db = wx.cloud.database({env: '环境ID'}) const _ = db.command db.collection('person').where(_.or([ { name:db.RegExp({ regexp:e, option:'i' }) }, { person:db.RegExp({ regexp:e, option:'i' }) }, { location:db.RegExp({ regexp:e, option:'i' }) } ]).and([{ del:0 }])).get({ success: function(res) { _this.list = res.data } }) },

上面.or中条件为或,.and条件中并列满足。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/2b7bcb0bc86c297afc61556f8b789bcc.html