cf-database.md 23.6 KB
Newer Older
雪洛's avatar
雪洛 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
## 云数据库简介

`uniCloud`提供了一个 JSON 格式的文档型数据库,数据库中的每条记录都是一个 JSON 格式的对象。一个数据库可以有多个集合(相当于关系型数据中的表),集合可看做一个 JSON 数组,数组中的每个对象就是一条记录,记录的格式是 JSON 对象。

关系型数据库和 JSON 文档型数据库的概念对应关系如下表:

|关系型					|JSON 文档型			|
|:-							|:-								|
|数据库 database|数据库 database	|
|表 table				|集合 collection	|
|行 row					|记录 record / doc|
|列 column			|字段 field				|

`uniCloud`云函数中可访问云数据库。

鉴于安全问题,暂不支持客户端直接访问数据库。

## 获取数据库的引用

```js
const db = uniCloud.database();
```

<!-- **DBOptions参数说明**

|字段	|类型		|必填	|描述				|平台差异说明	|
|:-:	|:-:		|:-:	|:-:				|:-:					|
|spaceId	|String	|否		|服务空间ID	|仅腾讯云支持	|
 -->
<!-- ## 新增集合

如果集合已存在,则报错。

```
db.createCollection(collectionName)
```
 -->
## 获取集合的引用

```js
// 获取 `user` 集合的引用
const collection = db.collection('user');
```

### 集合 Collection

通过 `db.collection(name)` 可以获取指定集合的引用,在集合上可以进行以下操作

| 类型     | 接口    | 说明                                                                               |
| -------- | ------- | ---------------------------------------------------------------------------------- |
| 写       | add     | 新增记录(触发请求)                                                               |
雪洛's avatar
雪洛 已提交
52
| 计数     | count   | 获取符合条件的记录条数                                                             |
雪洛's avatar
雪洛 已提交
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
| 读       | get     | 获取集合中的记录,如果有使用 where 语句定义查询条件,则会返回匹配结果集 (触发请求) |
| 引用     | doc     | 获取对该集合中指定 id 的记录的引用                                                 |
| 查询条件 | where   | 通过指定条件筛选出匹配的记录,可搭配查询指令(eq, gt, in, ...)使用                |
|          | skip    | 跳过指定数量的文档,常用于分页,传入 offset                                        |
|          | orderBy | 排序方式                                                                           |
|          | limit   | 返回的结果集(文档数量)的限制,有默认值和上限值                                     |
|          | field   | 指定需要返回的字段                                                                 |


查询及更新指令用于在 `where` 中指定字段需满足的条件,指令可通过 `db.command` 对象取得。


### 记录 Record / Document

通过 `db.collection(collectionName).doc(docId)` 可以获取指定集合上指定 id 的记录的引用,在记录上可以进行以下操作

| 接口| 说明	|												|
| ----	| ------								|
| 写	| set		| 覆写记录							|
|			| update| 局部更新记录(触发请求)|
|			| remove| 删除记录(触发请求)		|
| 读	| get		| 获取记录(触发请求)		|


### 查询筛选指令 Query Command

以下指令挂载在 `db.command`

| 类型     | 接口 | 说明                               |
| -------- | ---- | ---------------------------------- |
| 比较运算 | eq   | 字段 ==                            |
|          | neq  | 字段 !=                            |
|          | gt   | 字段 >                             |
|          | gte  | 字段 >=                            |
|          | lt   | 字段 <                             |
|          | lte  | 字段 <=                            |
|          | in   | 字段值在数组里                     |
|          | nin  | 字段值不在数组里                   |
| 逻辑运算 | and  | 表示需同时满足指定的所有条件       |
|          | or   | 表示需同时满足指定条件中的至少一个 |


### 字段更新指令 Update Command

以下指令挂载在 `db.command`

| 类型 | 接口    | 说明                             |
| ---- | ------- | -------------------------------- |
| 字段 | set     | 设置字段值                       |
|      | remove  | 删除字段                         |
|      | inc     | 加一个数值,原子自增             |
|      | mul     | 乘一个数值,原子自乘             |
|      | push    | 数组类型字段追加尾元素,支持数组 |
|      | pop     | 数组类型字段删除尾元素,支持数组 |
|      | shift   | 数组类型字段删除头元素,支持数组 |
|      | unshift | 数组类型字段追加头元素,支持数组 |


## 支持的数据类型

数据库提供以下几种数据类型:
* String:字符串
* Number:数字
* Object:对象
* Array:数组
* Bool:布尔值
* GeoPoint:地理位置点
* GeoLineStringL: 地理路径
* GeoPolygon: 地理多边形
* GeoMultiPoint: 多个地理位置点
* GeoMultiLineString: 多个地理路径
* GeoMultiPolygon: 多个地理多边形
* Date:时间
* Null

以下对几个特殊的数据类型做个补充说明
雪洛's avatar
雪洛 已提交
129
- 时间 Date
雪洛's avatar
雪洛 已提交
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150

  Date 类型用于表示时间,精确到毫秒,可以用 JavaScript 内置 Date 对象创建。需要特别注意的是,用此方法创建的时间是客户端时间,不是服务端时间。如果需要使用服务端时间,应该用 API 中提供的 serverDate 对象来创建一个服务端当前时间的标记,当使用了 serverDate 对象的请求抵达服务端处理时,该字段会被转换成服务端当前的时间,更棒的是,我们在构造 serverDate 对象时还可通过传入一个有 offset 字段的对象来标记一个与当前服务端时间偏移 offset 毫秒的时间,这样我们就可以达到比如如下效果:指定一个字段为服务端时间往后一个小时。

  那么当我们需要使用客户端时间时,存放 Date 对象和存放毫秒数是否是一样的效果呢?不是的,我们的数据库有针对日期类型的优化,建议大家使用时都用 Date 或 serverDate 构造时间对象。

  ```js
  //服务端当前时间
  new db.serverDate()
  ```

  ```js
  //服务端当前时间加1S
  new db.serverDate({
    offset: 1000
  })
  ```

<!-- 2. 地理位置

参考:[GEO地理位置](#GEO地理位置) -->

雪洛's avatar
雪洛 已提交
151
- Null
雪洛's avatar
雪洛 已提交
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213

  Null 相当于一个占位符,表示一个字段存在但是值为空。


## 新增文档

方法1: collection.add(data)

示例:

| 参数 | 类型   | 必填 | 说明                                     |
| ---- | ------ | ---- | ---------------------------------------- |
| data | object | 是   | {_id: '10001', 'name': 'Ben'} _id 非必填 |

```js
collection.add({
  name: 'Ben'
}).then((res) => {

});
```

Tips:云服务商为阿里云时,若集合不存在,调用add方法会自动创建集合

方法2: collection.doc().set(data)

也可通过 `set` 方法新增一个文档,需先取得文档引用再调用 `set` 方法。
如果文档不存在,`set` 方法会创建一个新文档。

```js
collection.doc().set({
  name: "Hey"
});
```


## 查询文档

支持 `where()``limit()``skip()``orderBy()``get()``update()``field()``count()` 等操作。

只有当调用`get()` `update()`时才会真正发送请求。
注:默认取前100条数据,最大取前100条数据。

### 添加查询条件

collection.where()
参数

设置过滤条件
where 可接收对象作为参数,表示筛选出拥有和传入对象相同的 key-value 的文档。比如筛选出所有类型为计算机的、内存为 8g 的商品:

```js
db.collection('goods').where({
  category: 'computer',
  type: {
    memory: 8,
  }
})
```

如果要表达更复杂的查询,可使用高级查询指令,比如筛选出所有内存大于 8g 的计算机商品:
```js
雪洛's avatar
雪洛 已提交
214
const dbCmd = db.command // 取指令
雪洛's avatar
雪洛 已提交
215 216 217
db.collection('goods').where({
  category: 'computer',
  type: {
雪洛's avatar
雪洛 已提交
218
    memory: dbCmd.gt(8), // 表示大于 8
雪洛's avatar
雪洛 已提交
219 220 221 222
  }
})
```

雪洛's avatar
雪洛 已提交
223 224 225 226 227 228 229
`where` 可以使用正则表达式来查询文档,比如一下示例查询所有`name`字段以ABC开头的用户
```js
db.collection('user').where({
  name: new RegExp('^ABC')
})
```

雪洛's avatar
雪洛 已提交
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
### 获取查询数量

collection.count()

参数
```js
db.collection('goods').where({
  category: 'computer',
  type: {
    memory: 8,
  }
}).count().then(function(res) {

})
```

响应参数

| 字段      | 类型    | 必填 | 说明                     |
| --------- | ------- | ---- | ------------------------ |
| code      | string  | 否   | 状态码,操作成功则不返回 |
| message   | string  | 否   | 错误描述                 |
| total     | Integer | 否   | 计数结果                 |
| requestId | string  | 否   | 请求序列号,用于错误排查 |



### 设置记录数量

collection.limit()

参数说明

| 参数  | 类型    | 必填 | 说明           |
| ----- | ------- | ---- | -------------- |
| value | Integer | 是   | 限制展示的数值 |

使用示例

```js
collection.limit(1).get().then(function(res) {

});
```

### 设置起始位置

collection.skip()

参数说明

| 参数  | 类型    | 必填 | 说明           |
| ----- | ------- | ---- | -------------- |
| value | Integer | 是   | 跳过展示的数据 |

使用示例

```js
collection.skip(4).get().then(function(res) {

});
```

### 对结果排序

collection.orderBy()

参数说明

| 参数      | 类型   | 必填 | 说明                                |
| --------- | ------ | ---- | ----------------------------------- |
| field     | string | 是   | 排序的字段                          |
| orderType | string | 是   | 排序的顺序,升序(asc) 或 降序(desc) |

使用示例

```js
collection.orderBy("name", "asc").get().then(function(res) {

});
```

### 指定返回字段

collection.field()

参数说明

| 参数 | 类型   | 必填 | 说明                                    |
| ---- | ------ | ---- | --------------------------------------- |
| -    | object | 是   | 要过滤的字段,不返回传false,返回传true |

使用示例

```js
collection.field({ 'age': true })
```
备注:只能指定要返回的字段或者不要返回的字段。即{'a': true, 'b': false}是一种错误的参数格式

### 查询指令
#### eq

表示字段等于某个值。`eq` 指令接受一个字面量 (literal),可以是 `number`, `boolean`, `string`, `object`, `array`

比如筛选出所有自己发表的文章,除了用传对象的方式:

```js
const myOpenID = 'xxx'
db.collection('articles').where({
  _openid: myOpenID
})
```

还可以用指令:

```js
雪洛's avatar
雪洛 已提交
346
const dbCmd = db.command
雪洛's avatar
雪洛 已提交
347 348
const myOpenID = 'xxx'
db.collection('articles').where({
雪洛's avatar
雪洛 已提交
349
  _openid: dbCmd.eq(openid)
雪洛's avatar
雪洛 已提交
350 351 352 353 354 355 356 357 358 359 360 361 362 363
})
```

注意 `eq` 指令比对象的方式有更大的灵活性,可以用于表示字段等于某个对象的情况,比如:

```js
// 这种写法表示匹配 stat.publishYear == 2018 且 stat.language == 'zh-CN'
db.collection('articles').where({
  stat: {
    publishYear: 2018,
    language: 'zh-CN'
  }
})
// 这种写法表示 stat 对象等于 { publishYear: 2018, language: 'zh-CN' }
雪洛's avatar
雪洛 已提交
364
const dbCmd = db.command
雪洛's avatar
雪洛 已提交
365
db.collection('articles').where({
雪洛's avatar
雪洛 已提交
366
  stat: dbCmd.eq({
雪洛's avatar
雪洛 已提交
367 368 369 370 371 372 373 374 375 376 377 378 379
    publishYear: 2018,
    language: 'zh-CN'
  })
})
```

#### neq

字段不等于。`neq` 指令接受一个字面量 (literal),可以是 `number`, `boolean`, `string`, `object`, `array`

如筛选出品牌不为 X 的计算机:

```js
雪洛's avatar
雪洛 已提交
380
const dbCmd = db.command
雪洛's avatar
雪洛 已提交
381 382 383
db.collection('goods').where({
  category: 'computer',
  type: {
雪洛's avatar
雪洛 已提交
384
    brand: dbCmd.neq('X')
雪洛's avatar
雪洛 已提交
385 386 387 388 389 390 391 392 393 394 395
  },
})
```

#### gt

字段大于指定值。

如筛选出价格大于 2000 的计算机:

```js
雪洛's avatar
雪洛 已提交
396
const dbCmd = db.command
雪洛's avatar
雪洛 已提交
397 398
db.collection('goods').where({
  category: 'computer',
雪洛's avatar
雪洛 已提交
399
  price: dbCmd.gt(2000)
雪洛's avatar
雪洛 已提交
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
})
```

#### gte

字段大于或等于指定值。

#### lt

字段小于指定值。

#### lte

字段小于或等于指定值。

#### in

字段值在给定的数组中。

筛选出内存为 8g 或 16g 的计算机商品:

```js
雪洛's avatar
雪洛 已提交
422
const dbCmd = db.command
雪洛's avatar
雪洛 已提交
423 424 425
db.collection('goods').where({
  category: 'computer',
  type: {
雪洛's avatar
雪洛 已提交
426
    memory: dbCmd.in([8, 16])
雪洛's avatar
雪洛 已提交
427 428 429 430 431 432 433 434 435 436 437
  }
})
```

#### nin

字段值不在给定的数组中。

筛选出内存不是 8g 或 16g 的计算机商品:

```js
雪洛's avatar
雪洛 已提交
438
const dbCmd = db.command
雪洛's avatar
雪洛 已提交
439 440 441
db.collection('goods').where({
  category: 'computer',
  type: {
雪洛's avatar
雪洛 已提交
442
    memory: dbCmd.nin([8, 16])
雪洛's avatar
雪洛 已提交
443 444 445 446 447 448 449 450 451 452 453 454
  }
})
```

#### and

表示需同时满足指定的两个或以上的条件。

如筛选出内存大于 4g 小于 32g 的计算机商品:

流式写法:
```js
雪洛's avatar
雪洛 已提交
455
const dbCmd = db.command
雪洛's avatar
雪洛 已提交
456 457 458
db.collection('goods').where({
  category: 'computer',
  type: {
雪洛's avatar
雪洛 已提交
459
    memory: dbCmd.gt(4).and(dbCmd.lt(32))
雪洛's avatar
雪洛 已提交
460 461 462 463 464 465
  }
})
```

前置写法:
```js
雪洛's avatar
雪洛 已提交
466
const dbCmd = db.command
雪洛's avatar
雪洛 已提交
467 468 469
db.collection('goods').where({
  category: 'computer',
  type: {
雪洛's avatar
雪洛 已提交
470
    memory: dbCmd.and(dbCmd.gt(4), dbCmd.lt(32))
雪洛's avatar
雪洛 已提交
471 472 473 474 475 476 477 478 479 480
  }
})
```

#### or

表示需满足所有指定条件中的至少一个。如筛选出价格小于 4000 或在 6000-8000 之间的计算机:

流式写法:
```js
雪洛's avatar
雪洛 已提交
481
const dbCmd = db.command
雪洛's avatar
雪洛 已提交
482 483 484
db.collection('goods').where({
  category: 'computer',
  type: {
雪洛's avatar
雪洛 已提交
485
    price:dbCmd.lt(4000).or(dbCmd.gt(6000).and(dbCmd.lt(8000)))
雪洛's avatar
雪洛 已提交
486 487 488 489 490 491
  }
})
```

前置写法:
```js
雪洛's avatar
雪洛 已提交
492
const dbCmd = db.command
雪洛's avatar
雪洛 已提交
493 494 495
db.collection('goods').where({
  category: 'computer',
  type: {
雪洛's avatar
雪洛 已提交
496
    price: dbCmd.or(dbCmd.lt(4000), dbCmd.and(dbCmd.gt(6000), dbCmd.lt(8000)))
雪洛's avatar
雪洛 已提交
497 498 499 500 501 502 503
  }
})
```

如果要跨字段 “或” 操作:(如筛选出内存 8g 或 cpu 3.2 ghz 的计算机)

```js
雪洛's avatar
雪洛 已提交
504 505
const dbCmd = db.command
db.collection('goods').where(dbCmd.or(
雪洛's avatar
雪洛 已提交
506 507
  {
    type: {
雪洛's avatar
雪洛 已提交
508
      memory: dbCmd.gt(8)
雪洛's avatar
雪洛 已提交
509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566
    }
  },
  {
    type: {
      cpu: 3.2
    }
  }
))
```

### 正则表达式查询

#### db.RegExp

根据正则表达式进行筛选

例如下面可以筛选出 `version` 字段开头是 "数字+s" 的记录,并且忽略大小写:
```js
// 可以直接使用正则表达式
db.collection('articles').where({
  version: /^\ds/i
})

// 或者
db.collection('articles').where({
  version: new db.RegExp({
    regex: '^\\ds'   // 正则表达式为 /^\ds/,转义后变成 '^\\ds'
    options: 'i'    // i表示忽略大小写
  }) 
})
```

## 删除文档

**方式1 通过指定文档ID删除**

collection.doc(_id).remove()

```js
// 清理全部数据
collection.get()
  .then((res) => {
    const promiseList = res.data.map(document => {
      return collection.doc(document.id).remove();
    });
    Promise.all(promiseList);
  })
  .catch((e) => {

  });
```

**方式2 条件查找文档然后直接批量删除**

collection.where().remove()

```js
// 删除字段a的值大于2的文档
雪洛's avatar
雪洛 已提交
567
const dbCmd = db.command
雪洛's avatar
雪洛 已提交
568
collection.where({
雪洛's avatar
雪洛 已提交
569
  a: dbCmd.gt(2)
雪洛's avatar
雪洛 已提交
570 571 572 573 574 575 576 577 578 579 580 581 582
}).remove().then(function(res) {
  
})
```

## 更新文档

### 更新指定文档

collection.doc().update()

```js
collection.doc('doc-id').update({
雪洛's avatar
雪洛 已提交
583 584 585 586
  name: "Hey",
  count: {
    fav: 1
  }
雪洛's avatar
雪洛 已提交
587 588 589
});
```

雪洛's avatar
雪洛 已提交
590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611
```
// 更新前
{
  _id: 'xxx',
  name: "Hello",
  count: {
    fav: 0,
    follow: 0
  }
}

// 更新后
{
  _id: 'xxx',
  name: "Hey",
  count: {
    fav: 1,
    follow: 0
  }
}
```

雪洛's avatar
雪洛 已提交
612 613 614 615 616
### 更新文档,如果不存在则创建
collection.doc().set()

```js
collection.doc('doc-id').set({
雪洛's avatar
雪洛 已提交
617 618 619 620
  name: "Hey",
  count: {
    fav: 1
  }
雪洛's avatar
雪洛 已提交
621 622 623 624 625
}).then(function(res) {
  
});
```

雪洛's avatar
雪洛 已提交
626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646
```
// 更新前
{
  _id: 'xxx',
  name: "Hello",
  count: {
    fav: 0,
    follow: 0
  }
}

// 更新后
{
  _id: 'xxx',
  name: "Hey",
  count: {
    fav: 1
  }
}
```

雪洛's avatar
雪洛 已提交
647 648 649 650
### 批量更新文档
collection.update()

```js
雪洛's avatar
雪洛 已提交
651 652
const dbCmd = db.command
collection.where({name: dbCmd.eq('hey')}).update({
雪洛's avatar
雪洛 已提交
653 654 655 656 657 658
  age: 18,
}).then(function(res) {
  
});
```

雪洛's avatar
雪洛 已提交
659

雪洛's avatar
雪洛 已提交
660 661 662 663 664 665 666
### 更新指令

#### set

更新指令。用于设定字段等于指定值。这种方法相比传入纯 JS 对象的好处是能够指定字段等于一个对象:

```js
雪洛's avatar
雪洛 已提交
667
const dbCmd = db.command
雪洛's avatar
雪洛 已提交
668
db.collection('photo').doc('doc-id').update({
雪洛's avatar
雪洛 已提交
669
  count: dbCmd.set({
雪洛's avatar
雪洛 已提交
670 671
    fav: 1,
    follow: 1
雪洛's avatar
雪洛 已提交
672
  })
雪洛's avatar
雪洛 已提交
673 674 675 676 677
}).then(function(res) {
  
})
```

雪洛's avatar
雪洛 已提交
678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699
```
// 更新前
{
  _id: 'xxx',
  name: "Hello",
  count: {
    fav: 0,
    follow: 0
  }
}

// 更新后
{
  _id: 'xxx',
  name: "Hello",
  count: {
    fav: 1,
    follow: 1
  }
}
```

雪洛's avatar
雪洛 已提交
700 701 702 703 704 705 706 707 708 709 710 711
#### inc

更新指令。用于指示字段自增某个值,这是个原子操作,使用这个操作指令而不是先读数据、再加、再写回的好处是:

1. 原子性:多个用户同时写,对数据库来说都是将字段加一,不会有后来者覆写前者的情况
2. 减少一次网络请求:不需先读再写

之后的 mul 指令同理。

如给收藏的商品数量加一:

```js
雪洛's avatar
雪洛 已提交
712
const dbCmd = db.command
雪洛's avatar
雪洛 已提交
713 714

db.collection('user').where({
雪洛's avatar
雪洛 已提交
715
  _id: 'my-doc-id'
雪洛's avatar
雪洛 已提交
716 717
}).update({
  count: {
雪洛's avatar
雪洛 已提交
718
    fav: dbCmd.inc(1)
雪洛's avatar
雪洛 已提交
719 720 721 722 723 724
  }
}).then(function(res) {
  
})
```

雪洛's avatar
雪洛 已提交
725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746
```
// 更新前
{
  _id: 'xxx',
  name: "Hello",
  count: {
    fav: 0,
    follow: 0
  }
}

// 更新后
{
  _id: 'xxx',
  name: "Hello",
  count: {
    fav: 1,
    follow: 0
  }
}
```

雪洛's avatar
雪洛 已提交
747 748 749 750
#### mul

更新指令。用于指示字段自乘某个值。

雪洛's avatar
雪洛 已提交
751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787
以下示例将count内的fav字段乘10

```js
const dbCmd = db.command

db.collection('user').where({
  _id: 'my-doc-id'
}).update({
  count: {
    fav: dbCmd.mul(10)
  }
}).then(function(res) {
  
})
```

```
// 更新前
{
  _id: 'xxx',
  name: "Hello",
  count: {
    fav: 2,
    follow: 0
  }
}

// 更新后
{
  _id: 'xxx',
  name: "Hello",
  count: {
    fav: 20,
    follow: 0
  }
}
```
雪洛's avatar
雪洛 已提交
788 789 790 791 792 793

#### remove

更新指令。用于表示删除某个字段。如某人删除了自己一条商品评价中的评分:

```js
雪洛's avatar
雪洛 已提交
794
const dbCmd = db.command
雪洛's avatar
雪洛 已提交
795
db.collection('comments').doc('comment-id').update({
雪洛's avatar
雪洛 已提交
796
  rating: dbCmd.remove()
雪洛's avatar
雪洛 已提交
797 798 799 800 801 802
}).then(function(res) {
  
})

```

雪洛's avatar
雪洛 已提交
803 804 805 806 807 808 809 810 811 812 813 814 815 816 817
```
// 更新前
{
  _id: 'xxx',
  rating: 5,
  comment: 'xxxx'
}

// 更新后
{
  _id: 'xxx',
  comment: 'xxxx'
}
```

雪洛's avatar
雪洛 已提交
818 819 820 821
#### push
向数组尾部追加元素,支持传入单个元素或数组

```js
雪洛's avatar
雪洛 已提交
822
const dbCmd = db.command
雪洛's avatar
雪洛 已提交
823 824

db.collection('comments').doc('comment-id').update({
雪洛's avatar
雪洛 已提交
825 826
  // users: dbCmd.push('aaa')
  users: dbCmd.push(['c', 'd'])
雪洛's avatar
雪洛 已提交
827 828 829 830 831 832
}).then(function(res) {
  
})

```

雪洛's avatar
雪洛 已提交
833 834 835 836 837 838 839 840 841 842 843 844 845 846
```
// 更新前
{
  _id: 'xxx',
  users: ['a','b']
}

// 更新后
{
  _id: 'xxx',
  users: ['a','b','c','d']
}
```

雪洛's avatar
雪洛 已提交
847 848 849 850
#### pop
删除数组尾部元素

```js
雪洛's avatar
雪洛 已提交
851
const dbCmd = db.command
雪洛's avatar
雪洛 已提交
852 853

db.collection('comments').doc('comment-id').update({
雪洛's avatar
雪洛 已提交
854
  users: dbCmd.pop()
雪洛's avatar
雪洛 已提交
855 856 857 858
}).then(function(res) {
  
})
```
雪洛's avatar
雪洛 已提交
859 860 861 862 863 864 865 866 867 868 869 870 871 872 873

```
// 更新前
{
  _id: 'xxx',
  users: ['a','b']
}

// 更新后
{
  _id: 'xxx',
  users: ['a']
}
```

雪洛's avatar
雪洛 已提交
874 875
#### unshift
向数组头部添加元素,支持传入单个元素或数组。使用同push
雪洛's avatar
雪洛 已提交
876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902

```js
const dbCmd = db.command

db.collection('comments').doc('comment-id').update({
  // users: dbCmd.push('aaa')
  users: dbCmd.unshift(['c', 'd'])
}).then(function(res) {
  
})

```

```
// 更新前
{
  _id: 'xxx',
  users: ['a','b']
}

// 更新后
{
  _id: 'xxx',
  users: ['c','d','a','b']
}
```

雪洛's avatar
雪洛 已提交
903 904 905
#### shift
删除数组头部元素。使用同pop

雪洛's avatar
雪洛 已提交
906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928
```js
const dbCmd = db.command

db.collection('comments').doc('comment-id').update({
  users: dbCmd.shift()
}).then(function(res) {
  
})
```

```
// 更新前
{
  _id: 'xxx',
  users: ['a','b']
}

// 更新后
{
  _id: 'xxx',
  users: ['b']
}
```
雪洛's avatar
雪洛 已提交
929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135

<!-- ## GEO地理位置

注意:**如果需要对类型为地理位置的字段进行搜索,一定要建立地理位置索引**

### GEO数据类型

#### Point

用于表示地理位置点,用经纬度唯一标记一个点,这是一个特殊的数据存储类型。

签名:`Point(longitude: number, latitude: number)`

示例:
```js
new db.Geo.Point(longitude, latitude)
```

#### LineString

用于表示地理路径,是由两个或者更多的 `Point` 组成的线段。

签名:`LineString(points: Point[])`

示例:

```js
new db.Geo.LineString([
  new db.Geo.Point(lngA, latA),
  new db.Geo.Point(lngB, latB),
  // ...
])
```

#### Polygon

用于表示地理上的一个多边形(有洞或无洞均可),它是由一个或多个**闭环** `LineString` 组成的几何图形。

由一个环组成的 `Polygon` 是没有洞的多边形,由多个环组成的是有洞的多边形。对由多个环(`LineString`)组成的多边形(`Polygon`),第一个环是外环,所有其他环是内环(洞)。

签名:`Polygon(lines: LineString[])`

示例:

```js
new db.Geo.Polygon([
  new db.Geo.LineString(...),
  new db.Geo.LineString(...),
  // ...
])
```

#### MultiPoint

用于表示多个点 `Point` 的集合。

签名:`MultiPoint(points: Point[])`

示例:

```js
new db.Geo.MultiPoint([
  new db.Geo.Point(lngA, latA),
  new db.Geo.Point(lngB, latB),
  // ...
])
```

#### MultiLineString

用于表示多个地理路径 `LineString` 的集合。

签名:`MultiLineString(lines: LineString[])`

示例:

```js
new db.Geo.MultiLineString([
  new db.Geo.LineString(...),
  new db.Geo.LineString(...),
  // ...
])
```


#### MultiPolygon

用于表示多个地理多边形 `Polygon` 的集合。

签名:`MultiPolygon(polygons: Polygon[])`

示例:

```js
new db.Geo.MultiPolygon([
  new db.Geo.Polygon(...),
  new db.Geo.Polygon(...),
  // ...
])
```

### GEO操作符

#### geoNear

按从近到远的顺序,找出字段值在给定点的附近的记录。

签名:
```js
db.command.geoNear(options: IOptions)

interface IOptions {
  geometry: Point // 点的地理位置
  maxDistance?: number // 选填,最大距离,米为单位
  minDistance?: number // 选填,最小距离,米为单位
}
```


示例:

```js
db.collection('user').where({
  location: db.command.geoNear({
    geometry: new db.Geo.Point(lngA, latA),
    maxDistance: 1000,
    minDistance: 0
  })
})
```

#### geoWithin

找出字段值在指定 Polygon / MultiPolygon 内的记录,无排序

签名:

```js
db.command.geoWithin(IOptions)

interface IOptions {
  geometry: Polygon | MultiPolygon // 地理位置
}
```

示例:

```js
// 一个闭合的区域
const area = new Polygon([
  new LineString([
    new Point(lngA, latA),
    new Point(lngB, latB),
    new Point(lngC, latC),
    new Point(lngA, latA)
  ]),
])

// 搜索 location 字段在这个区域中的 user
db.collection('user').where({
  location: db.command.geoWithin({
    geometry: area
  })
})
```

#### geoIntersects

找出字段值和给定的地理位置图形相交的记录

签名:

```js
db.command.geoIntersects(IOptions)

interface IOptions {
  geometry: Point | LineString | MultiPoint | MultiLineString | Polygon | MultiPolygon // 地理位置
}
```

示例:

```js
// 一条路径
const line = new LineString([
  new Point(lngA, latA),
  new Point(lngB, latB)
])

// 搜索 location 与这条路径相交的 user
db.collection('user').where({
  location: db.command.geoIntersects({
    geometry: line
  })
})
```
 -->
<!-- ## 数据库实时推送

监听指定集合中符合查询条件的文档,通过onchange回调获得文档的变化详情
(where参数为查询条件 参考 [查询文档](#查询文档))

```js
  const uniClient =  uniCloud.init({
      spaceId: 'YourSpaceId
  });
  const db = uniClient.database();
雪洛's avatar
雪洛 已提交
1136
  const dbCmd = db.command
雪洛's avatar
雪洛 已提交
1137 1138
  const collection = db.collection('collName') // collName 需填当前服务空间下集合名称

雪洛's avatar
雪洛 已提交
1139
  let ref = collection.where({ test: dbCmd.gt(0) }).watch({
雪洛's avatar
雪洛 已提交
1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172
    onChange: snapshot => {
        console.log("收到snapshot**********", snapshot)
    },
    onError: error => {
      console.log("收到error**********", error)
    }
  })
```

单个doc的监听,也可以采用doc('docId').watch()形式
```js
  let ref = collection.doc('one docId').watch({
    onChange: snapshot => {
        console.log("收到snapshot**********", snapshot)
    },
    onError: error => {
      console.log("收到error**********", error)
    }
  })
```

手动关闭监听,当前监听将不再收到推送
```js
  ref.close()
```
 -->
<!-- ## 平台差异

|差异项					|说明																							|
|:-:						|:-:																							|
|add						|使用阿里云时在集合不存在的时候调用会自动创建集合	|
|数据库实时推送	|阿里云暂不支持																		|
|GEO地理位置		|阿里云暂不支持																		| -->