Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
b85c1ac3
U
uni-app
项目概览
DCloud
/
uni-app
4 个月 前同步成功
通知
730
Star
38707
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
7
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
7
Issue
7
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
b85c1ac3
编写于
9月 29, 2020
作者:
雪洛
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
docs: 补充数据库示例
上级
735ceb4f
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
334 addition
and
70 deletion
+334
-70
docs/uniCloud/cf-database.md
docs/uniCloud/cf-database.md
+334
-70
未找到文件。
docs/uniCloud/cf-database.md
浏览文件 @
b85c1ac3
...
...
@@ -515,23 +515,77 @@ collection.field({ 'age': true }) //只返回age字段,其他字段不返回
### 查询指令
查询指令以dbCmd.开头,包括等于、不等于、大于、大于等于、小于、小于等于、in、nin、and、or。
#### eq 等于
查询指令以dbCmd.开头,包括等于、不等于、大于、大于等于、小于、小于等于、in、nin、and、or。
下面的查询指令以以下数据集为例:
```
json
//
goods表
[{
"type"
:
{
"brand"
:
"A"
,
"name"
:
"A-01"
,
"memory"
:
16
,
"cpu"
:
3.2
},
"category"
:
"computer"
,
"quarter"
:
"2020 Q2"
,
"price"
:
2500
},{
"type"
:
{
"brand"
:
"X"
,
"name"
:
"X-01"
,
"memory"
:
8
,
"cpu"
:
4.0
},
"category"
:
"computer"
,
"quarter"
:
"2020 Q3"
,
"price"
:
6500
},{
"type"
:
{
"brand"
:
"S"
,
"name"
:
"S-01"
,
"author"
:
"S-01-A"
},
"category"
:
"book"
,
"quarter"
:
"2020 Q3"
,
"price"
:
20
}]
```
#### eq 等于@dbcmd-eq
表示字段等于某个值。
`eq`
指令接受一个字面量 (literal),可以是
`number`
,
`boolean`
,
`string`
,
`object`
,
`array`
。
事实上在uniCloud的数据库中,
`等于`
有两种写法。
比如筛选出所有
自己发表的文章
,
比如筛选出所有
2020 Q2季度的商品
,
写法1:使用
`:`
来比较
```
js
const
myOpenID
=
"
xxx
"
let
res
=
await
db
.
collection
(
'
articles
'
).
where
({
_openid
:
myOpenID
}).
get
()
quarter
:
'
2020 Q2
'
}).
get
()
// 查询返回值
{
"
data
"
:[{
"
type
"
:
{
"
brand
"
:
"
A
"
,
"
name
"
:
"
A-01
"
,
"
memory
"
:
16
,
"
cpu
"
:
3.2
},
"
category
"
:
"
computer
"
,
"
quarter
"
:
"
2020 Q2
"
,
"
price
"
:
2500
}]
}
```
写法2:使用指令
`dbcmd.eq()`
...
...
@@ -540,31 +594,68 @@ let res = await db.collection('articles').where({
const
dbCmd
=
db
.
command
const
myOpenID
=
"
xxx
"
let
res
=
await
db
.
collection
(
'
articles
'
).
where
({
_openid
:
dbCmd
.
eq
(
openid
)
}).
get
()
quarter
:
dbCmd
.
eq
(
'
2020 Q2
'
)
}).
get
()
// 查询返回值
{
"
data
"
:[{
"
type
"
:
{
"
brand
"
:
"
A
"
,
"
name
"
:
"
A-01
"
,
"
memory
"
:
16
,
"
cpu
"
:
3.2
},
"
category
"
:
"
computer
"
,
"
quarter
"
:
"
2020 Q2
"
,
"
price
"
:
2500
}]
}
```
注意
`eq`
指令有更大的灵活性,可以用于表示字段等于某个对象的情况,比如:
```
js
// 这种写法表示匹配
stat.publishYear == 2018 且 stat.language == 'zh-CN
'
// 这种写法表示匹配
type.brand == 'S' 且 type.name == 'S-01
'
let
res
=
await
db
.
collection
(
'
articles
'
).
where
({
stat
:
{
publishYear
:
2018
,
language
:
'
zh-CN
'
type
:
{
brand
:
'
S
'
,
name
:
'
S-01
'
}
}).
get
()
// 这种写法表示 stat 对象等于 { publishYear: 2018, language: 'zh-CN' }
}).
get
()
// 查询返回值
{
"
data
"
:[{
"
type
"
:
{
"
brand
"
:
"
S
"
,
"
name
"
:
"
S-01
"
,
"
author
"
:
"
S-01-A
"
},
"
category
"
:
"
book
"
,
"
quarter
"
:
"
2020 Q3
"
,
"
price
"
:
20
}]
}
// 这种写法表示 stat 对象等于 { brand: 'S', name: 'S-01' }
// 对象中还有其他字段时无法匹配,例如:{ brand: 'S', name: 'S-01', author: 'S-01-A' }
// 对象中字段顺序不一致也不能匹配,例如:{ name: 'S-01', brand: 'S' }
const
dbCmd
=
db
.
command
let
res
=
await
db
.
collection
(
'
articles
'
).
where
({
stat
:
dbCmd
.
eq
({
publishYear
:
2018
,
language
:
'
zh-CN
'
brand
:
'
S
'
,
name
:
'
S-01
'
})
}).
get
()
}).
get
()
// 查询返回值
{
"
data
"
:[]
}
```
#### neq
#### neq
不等于@dbcmd-neq
字段不等于。
`neq`
指令接受一个字面量 (literal),可以是
`number`
,
`boolean`
,
`string`
,
`object`
,
`array`
。
...
...
@@ -577,36 +668,66 @@ let res = await db.collection('goods').where({
type
:
{
brand
:
dbCmd
.
neq
(
'
X
'
)
},
}).
get
()
```
#### gt
}).
get
()
// 查询返回值
{
"
data
"
:[{
"
type
"
:
{
"
brand
"
:
"
A
"
,
"
name
"
:
"
A-01
"
,
"
memory
"
:
16
,
"
cpu
"
:
3.2
},
"
category
"
:
"
computer
"
,
"
quarter
"
:
"
2020 Q2
"
,
"
price
"
:
2500
}]
}
```
#### gt 大于@dbcmd-gt
字段大于指定值。
如筛选出价格大于
2
000 的计算机:
如筛选出价格大于
3
000 的计算机:
```
js
const
dbCmd
=
db
.
command
let
res
=
await
db
.
collection
(
'
goods
'
).
where
({
category
:
'
computer
'
,
price
:
dbCmd
.
gt
(
2000
)
}).
get
()
```
#### gte
price
:
dbCmd
.
gt
(
3000
)
}).
get
()
// 查询返回值
{
"
data
"
:[{
"
type
"
:
{
"
brand
"
:
"
X
"
,
"
name
"
:
"
X-01
"
,
"
memory
"
:
8
,
"
cpu
"
:
4.0
},
"
category
"
:
"
computer
"
,
"
quarter
"
:
"
2020 Q3
"
,
"
price
"
:
6500
}]
}
```
#### gte 大于等于@dbcmd-gte
字段大于或等于指定值。
#### lt
#### lt
小于@dbcmd-lt
字段小于指定值。
#### lte
#### lte
小于等于@dbcmd-lte
字段小于或等于指定值。
#### in
#### in
在数组中@dbcmd-in
字段值在给定的数组中。
...
...
@@ -619,10 +740,35 @@ let res = await db.collection('goods').where({
type
:
{
memory
:
dbCmd
.
in
([
8
,
16
])
}
}).
get
()
```
#### nin
}).
get
()
// 查询返回值
{
"
data
"
:[{
"
type
"
:
{
"
brand
"
:
"
A
"
,
"
name
"
:
"
A-01
"
,
"
memory
"
:
16
,
"
cpu
"
:
3.2
},
"
category
"
:
"
computer
"
,
"
quarter
"
:
"
2020 Q2
"
,
"
price
"
:
2500
},{
"
type
"
:
{
"
brand
"
:
"
X
"
,
"
name
"
:
"
X-01
"
,
"
memory
"
:
8
,
"
cpu
"
:
4.0
},
"
category
"
:
"
computer
"
,
"
quarter
"
:
"
2020 Q3
"
,
"
price
"
:
6500
}]
}
```
#### nin 不在数组中@dbcmd-nin
字段值不在给定的数组中。
...
...
@@ -635,10 +781,15 @@ db.collection('goods').where({
type
:
{
memory
:
dbCmd
.
nin
([
8
,
16
])
}
})
})
// 查询返回值
{
"
data
"
:[]
}
```
#### and
#### and
且@dbcmd-and
表示需同时满足指定的两个或以上的条件。
...
...
@@ -652,7 +803,33 @@ db.collection('goods').where({
type
:
{
memory
:
dbCmd
.
gt
(
4
).
and
(
dbCmd
.
lt
(
32
))
}
})
})
// 查询返回值
{
"
data
"
:[{
"
type
"
:
{
"
brand
"
:
"
A
"
,
"
name
"
:
"
A-01
"
,
"
memory
"
:
16
,
"
cpu
"
:
3.2
},
"
category
"
:
"
computer
"
,
"
quarter
"
:
"
2020 Q2
"
,
"
price
"
:
2500
},{
"
type
"
:
{
"
brand
"
:
"
X
"
,
"
name
"
:
"
X-01
"
,
"
memory
"
:
8
,
"
cpu
"
:
4.0
},
"
category
"
:
"
computer
"
,
"
quarter
"
:
"
2020 Q3
"
,
"
price
"
:
6500
}]
}
```
前置写法:
...
...
@@ -666,7 +843,7 @@ db.collection('goods').where({
})
```
#### or
#### or
或@dbcmd-or
表示需满足所有指定条件中的至少一个。如筛选出价格小于 4000 或在 6000-8000 之间的计算机:
...
...
@@ -678,7 +855,33 @@ db.collection('goods').where({
type
:
{
price
:
dbCmd
.
lt
(
4000
).
or
(
dbCmd
.
gt
(
6000
).
and
(
dbCmd
.
lt
(
8000
)))
}
})
})
// 查询返回值
{
"
data
"
:[{
"
type
"
:
{
"
brand
"
:
"
A
"
,
"
name
"
:
"
A-01
"
,
"
memory
"
:
16
,
"
cpu
"
:
3.2
},
"
category
"
:
"
computer
"
,
"
quarter
"
:
"
2020 Q2
"
,
"
price
"
:
2500
},{
"
type
"
:
{
"
brand
"
:
"
X
"
,
"
name
"
:
"
X-01
"
,
"
memory
"
:
8
,
"
cpu
"
:
4.0
},
"
category
"
:
"
computer
"
,
"
quarter
"
:
"
2020 Q3
"
,
"
price
"
:
6500
}]
}
```
前置写法:
...
...
@@ -707,7 +910,32 @@ db.collection('goods').where(dbCmd.or(
cpu
:
3.2
}
}
))
))
// 查询返回值
{
"
data
"
:[{
"
type
"
:
{
"
brand
"
:
"
A
"
,
"
name
"
:
"
A-01
"
,
"
memory
"
:
16
,
"
cpu
"
:
3.2
},
"
category
"
:
"
computer
"
,
"
quarter
"
:
"
2020 Q2
"
,
"
price
"
:
2500
},{
"
type
"
:
{
"
brand
"
:
"
X
"
,
"
name
"
:
"
X-01
"
,
"
memory
"
:
8
,
"
cpu
"
:
4.0
},
"
category
"
:
"
computer
"
,
"
quarter
"
:
"
2020 Q3
"
,
"
price
"
:
6500
}]
}
```
### 正则表达式查询@regexp
...
...
@@ -731,7 +959,7 @@ db.collection('user').where({
// 或者使用new db.RegExp,这种方式阿里云不支持
db
.
collection
(
'
articles
'
).
where
({
version
:
new
db
.
RegExp
({
regex
:
'
^
\\
ds
'
// 正则表达式为 /^\ds/,转义后变成 '^\\ds'
regex
:
'
^
\\
ds
'
,
// 正则表达式为 /^\ds/,转义后变成 '^\\ds'
options
:
'
i
'
// i表示忽略大小写
})
})
...
...
@@ -804,10 +1032,10 @@ let res = await collection.doc('doc-id').update({
});
```
```
```
json
//
更新前
{
"_id": "
xxx
",
"_id"
:
"
doc-id
"
,
"name"
:
"Hello"
,
"count"
:
{
"fav"
:
0
,
...
...
@@ -817,7 +1045,7 @@ let res = await collection.doc('doc-id').update({
//
更新后
{
"_id": "
xxx
",
"_id"
:
"
doc-id
"
,
"name"
:
"Hey"
,
"count"
:
{
"fav"
:
1
,
...
...
@@ -839,10 +1067,12 @@ let res = await collection.doc('doc-id').update({
```
json
//
更新前
{
"_id"
:
"doc-id"
,
"arr"
:
[
"hello"
,
"world"
]
}
//
更新后
{
"_id"
:
"doc-id"
,
"arr"
:
[
"hello"
,
"uniCloud"
]
}
```
...
...
@@ -867,7 +1097,7 @@ let res = await collection.doc('doc-id').set({
```
json
//
更新前
{
"_id"
:
"
xxx
"
,
"_id"
:
"
doc-id
"
,
"name"
:
"Hello"
,
"count"
:
{
"fav"
:
0
,
...
...
@@ -877,7 +1107,7 @@ let res = await collection.doc('doc-id').set({
//
更新后
{
"_id"
:
"
xxx
"
,
"_id"
:
"
doc-id
"
,
"name"
:
"Hey"
,
"count"
:
{
"fav"
:
1
...
...
@@ -998,10 +1228,10 @@ let res = await db.collection('photo').doc('doc-id').update({
})
```
```
```
json
//
更新前
{
"_id": "
xxx
",
"_id"
:
"
doc-id
"
,
"name"
:
"Hello"
,
"count"
:
{
"fav"
:
0
,
...
...
@@ -1011,7 +1241,7 @@ let res = await db.collection('photo').doc('doc-id').update({
//
更新后
{
"_id": "
xxx
",
"_id"
:
"
doc-id
"
,
"name"
:
"Hello"
,
"count"
:
{
"fav"
:
1
,
...
...
@@ -1043,10 +1273,10 @@ let res = await db.collection('user').where({
})
```
```
```
json
//
更新前
{
"_id": "
xxx
",
"_id"
:
"
my-doc-id
"
,
"name"
:
"Hello"
,
"count"
:
{
"fav"
:
0
,
...
...
@@ -1056,7 +1286,7 @@ let res = await db.collection('user').where({
//
更新后
{
"_id": "
xxx
",
"_id"
:
"
my-doc-id
"
,
"name"
:
"Hello"
,
"count"
:
{
"fav"
:
1
,
...
...
@@ -1097,10 +1327,10 @@ let res = await db.collection('user').where({
})
```
```
```
json
//
更新前
{
"_id": "
xxx
",
"_id"
:
"
my-doc-id
"
,
"name"
:
"Hello"
,
"count"
:
{
"fav"
:
2
,
...
...
@@ -1110,7 +1340,7 @@ let res = await db.collection('user').where({
//
更新后
{
"_id": "
xxx
",
"_id"
:
"
my-doc-id
"
,
"name"
:
"Hello"
,
"count"
:
{
"fav"
:
20
,
...
...
@@ -1144,17 +1374,17 @@ let res = await db.collection('comments').doc('comment-id').update({
})
```
```
```
json
//
更新前
{
"_id": "
xxx
",
"_id"
:
"
comment-id
"
,
"rating"
:
5
,
"comment"
:
"xxx"
}
//
更新后
{
"_id": "
xxx
",
"_id"
:
"
comment-id
"
,
"comment"
:
"xxx"
}
```
...
...
@@ -1174,13 +1404,13 @@ let res = await db.collection('comments').doc('comment-id').update({
```
json
//
更新前
{
"_id"
:
"
xxx
"
,
"_id"
:
"
comment-id
"
,
"users"
:
[
"a"
,
"b"
]
}
//
更新后
{
"_id"
:
"
xxx
"
,
"_id"
:
"
comment-id
"
,
"users"
:
[
"a"
,
"b"
,
"c"
,
"d"
]
}
```
...
...
@@ -1199,13 +1429,13 @@ let res = await db.collection('comments').doc('comment-id').update({
```
json
//
更新前
{
"_id"
:
"
xxx
"
,
"_id"
:
"
comment-id
"
,
"users"
:
[
"a"
,
"b"
]
}
//
更新后
{
"_id"
:
"
xxx
"
,
"_id"
:
"
comment-id
"
,
"users"
:
[
"a"
]
}
```
...
...
@@ -1225,13 +1455,13 @@ let res = await db.collection('comments').doc('comment-id').update({
```
json
//
更新前
{
"_id"
:
"
xxx
"
,
"_id"
:
"
comment-id
"
,
"users"
:
[
"a"
,
"b"
]
}
//
更新后
{
"_id"
:
"
xxx
"
,
"_id"
:
"
comment-id
"
,
"users"
:
[
"c"
,
"d"
,
"a"
,
"b"
]
}
```
...
...
@@ -1250,13 +1480,13 @@ let res = await db.collection('comments').doc('comment-id').update({
```
json
//
更新前
{
"_id"
:
"
xxx
"
,
"_id"
:
"
comment-id
"
,
"users"
:
[
"a"
,
"b"
]
}
//
更新后
{
"_id"
:
"
xxx
"
,
"_id"
:
"
comment-id
"
,
"users"
:
[
"b"
]
}
```
...
...
@@ -1671,8 +1901,11 @@ exports.main = async (event) => {
```
## 聚合操作
有时候我们需要对数据进行分析操作,比如一些统计操作、联表查询等,这个时候简单的查询操作就搞不定这些需求,因此就需要使用聚合操作来完成。
获取数据库集合的聚合操作实例
获取数据库集合的聚合操作实例
```
js
db
.
collection
(
'
scores
'
).
aggregate
()
```
...
...
@@ -1684,10 +1917,42 @@ db.collection('scores').aggregate()
**字段路径**
表达式用字段路径表示法来指定记录中的字段。字段路径的表示由一个
`$`
符号加上字段名或嵌套字段名。嵌套字段名用点将嵌套的各级字段连接起来。如
`$profile`
就表示
`profile`
的字段路径,
`$profile.name`
就表示
`profile.name`
的字段路径(
`profile`
字段中嵌套的
`name`
字段)。
例如:现有以下数据
```
json
[{
"profile"
:
{
"name"
:
"Chloe"
},
"status"
:
0
}]
```
```
js
// 执行以下操作
let
res
=
await
db
.
collection
(
'
scores
'
).
aggregate
()
.
addFields
({
name
:
'
$profile.name
'
})
.
end
()
// 返回值为
{
"
data
"
:
[{
"
profile
"
:
{
"
name
"
:
"
Chloe
"
},
"
status
"
:
0
,
"
name
"
:
"
Chloe
"
}]
}
```
**常量**
常量可以是任意类型。默认情况下 $ 开头的字符串都会被当做字段路径处理,如果想要避免这种行为,使用
`
AggregateCommand
.literal`
声明为常量。
常量可以是任意类型。默认情况下 $ 开头的字符串都会被当做字段路径处理,如果想要避免这种行为,使用
`
db.command.aggregate
.literal`
声明为常量。
**聚合操作符**
...
...
@@ -2285,7 +2550,6 @@ let res = await db.collection('attractions').aggregate()
聚合阶段。将输入记录按给定表达式分组,输出时每个记录代表一个分组,每个记录的 _id 是区分不同组的 key。输出记录中也可以包括累计值,将输出字段设为累计值即会从该分组中计算累计值。
**API 说明**
**group 的形式如下:**
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录