Command.max(value: any): Command参数value: any返回值Command示例代码Command.max(value: any): Command支持端:小程序 2.8.3 起, 云函数 1.2.1 起 更新操作符,给定一个值,只有该值大于字段当前值才进行更新。 参数value: any返回值Command示例代码如果字段 progress < 50,则更新到 50 const _ = db.commanddb.collection('todos').doc('doc-id').update({ data: { progress: _.max(50) }})