Command.shift(): Command

支持端:小程序 , 云函数

数组更新操作符,对一个值为数组的字段,将数组头部元素删除。

返回值

Command

示例代码

  1. const _ = db.command
  2. db.collection('todos').doc('doc-id').update({
  3. data: {
  4. tags: _.shift()
  5. }
  6. })