小程序云数据库表结构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', 表示忽略大小写