Command.max(value: any): Command

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

更新操作符,给定一个值,只有该值大于字段当前值才进行更新。

参数

value: any

返回值

Command

示例代码

如果字段 progress < 50,则更新到 50

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