5.3.3.15. shift¶
-
cloud.database.command.
shift
(values)¶ 更新指令,对一个值为数组的字段,将数组头部元素删除。
- 参数
values (any[]) – 查询条件
- 返回类型
Command
- 示例
const cloud = require('wx-server-sdk') cloud.init() const db = cloud.database() const _ = db.command exports.main = async (event, context) => { try { return await db.collection('todos').doc('doc-id').update({ data: { tags: _.shift() } }) } catch (e) { console.error(e) } }