问题模块 框架类型 问题类型 终端类型 AppID 基础库版本
云开发 微信小程序 需求 客户端 wxc3e177fd3bf17a44 2.3.0
- 需求的场景描述(希望解决的问题)
where查询条件中如何模糊匹配?
- 希望提供的能力
类似mongodb中的$regex正则匹配
代码片段
db.collection('mydb').where(_.or( [{ name: query_value }, { phone: query_value }, { job: query_value } ] )).get({ success: res => { this.setData({ queryResult: res.data }) console.log('[数据库] [查询记录] 成功: ', res.data) }, fail: err => { wx.showToast({ icon: 'none', title: '查询记录失败' }) console.error('[数据库] [查询记录] 失败:', err) }
微信小程序开发问题解答
微信小程序开发者回答:
请参考:
微信小程序云开发数据库API的where方法目前有类似sql语句的like查询吗?https://developers.weixin.qq.com/community/develop/doc/00068a12ec87b83eaa57c6a9459400
本文网址:http://www.91bianli.com/weixinxiaochengxu/46832.html