Fork me on GitHub

小程序云数据支持模糊查询

小程序云数据库表结构

1
2
3
4
5
6
7
8
9
{
title : "彩色线条",
desc : [
{
type : "text",
text : "给孩子们彩色的梦想",
},
],
}

彩色 梦想 模糊查询

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.where(_.or([
{
"title" : db.RegExp({
regexp : '彩色|梦想',
option : 'i',
}),
},
{
"desc.0.text" : db.RegExp({
regexp : '彩色|梦想',
option : 'i',
}),
},
]))

注: option : 'i', 表示忽略大小写

-------------感谢您的阅读 有问题请留言(或mailto:frostbelt@sina.cn)-------------