微信小程序 云开发——模糊查询

解释:

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条件中并列满足。

你可能感兴趣的:(微信开发)