微信小程序云数据库 模糊查询 or和and 使用
Posted sincerity
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序云数据库 模糊查询 or和and 使用相关的知识,希望对你有一定的参考价值。
原文:https://blog.csdn.net/qq_29384639/article/details/97150340
解释:
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条件中并列满足。
以上是关于微信小程序云数据库 模糊查询 or和and 使用的主要内容,如果未能解决你的问题,请参考以下文章