微信小程序云数据库 模糊查询 or和and 使用
分类: 微信小程序 专栏: 小程序 标签: 微信小程序云数据库 模糊查询 or和and 使用
2024-11-05 16:13:22 122浏览
上面.or中条件为或,.and条件中并列满足
解释:
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条件中并列满足。
好博客就要一起分享哦!分享海报
此处可发布评论
评论(0)展开评论
暂无评论,快来写一下吧
展开评论
他的专栏
他感兴趣的技术