小程序
小游戏
企业微信
微信支付
扫描小程序码分享
数据如 {
title : '我是标题'
},
查询title包含"标题"这个字符,并返回结果,
db.collection.where没有对于字符串"包含"的功能, 有一个数组查询的.
请教怎么实现所述功能?
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
// 点击搜索 handleSearch() { let value = '标题' db.collection('goods').where({ title: db.RegExp({ regexp: value, //做为关键字进行匹配 options: 'i', //不区分大小写 }) }).get().then(res=> { console.log("查询结果", res) }).catch(err=> { console.log('查询失败',err); }); },
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
// 不用s模式,也可以直接使用js正则
db.collection('collection')
.where({
goods_name: /苹果(?:电脑|手机)/
})
.get()
数据库一般都会提供字符串函数:position(substring in string)
substring
string
以 PostgreSQL 为例,position('om' in 'Thomas') → 3
position('om' in 'Thomas')
3
详细说明可参考: https://www.rockdata.net/zh-cn/docs/14/functions-string.html#id-1.5.8.10.5.2.2.11.1.1.1
看了官方文档,现在的版本2.22.0
查文本型 字段中 是否包含 指定字符串
好像没有其他方法了,现在只能用db.RegExp?
我也遇到了这个问题,请问您解决了嘛?
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
// 点击搜索 handleSearch() { let value = '标题' db.collection('goods').where({ title: db.RegExp({ regexp: value, //做为关键字进行匹配 options: 'i', //不区分大小写 }) }).get().then(res=> { console.log("查询结果", res) }).catch(err=> { console.log('查询失败',err); }); },
// 不用s模式,也可以直接使用js正则
db.collection('collection')
.where({
goods_name: /苹果(?:电脑|手机)/
})
.get()
数据库一般都会提供字符串函数:position(
substring
instring
)以 PostgreSQL 为例,
position('om' in 'Thomas')
→3
详细说明可参考: https://www.rockdata.net/zh-cn/docs/14/functions-string.html#id-1.5.8.10.5.2.2.11.1.1.1
看了官方文档,现在的版本2.22.0
查文本型 字段中 是否包含 指定字符串
好像没有其他方法了,现在只能用db.RegExp?
我也遇到了这个问题,请问您解决了嘛?