Command.exists(value: boolean): Command

支持端:小程序 2.8.3 起, 云函数 1.2.1

数组更新指令。原子操作。给定元素,除非数组中已存在该元素,否则添加进数组。

参数

value: boolean

返回值

Command

示例代码

找出存在 tags 字段的记录

  1. const _ = db.command
  2. db.collection('todos').where({
  3. tags: _.exists(true)
  4. })
  5. .get({
  6. success: console.log,
  7. fail: console.error
  8. })