浏览 133
分享
Command.max(value: any): Command
更新操作符,给定一个值,只有该值大于字段当前值才进行更新。
参数
value: any
返回值
Command
示例代码
如果字段 progress < 50,则更新到 50
const _ = db.command
db.collection('todos').doc('doc-id').update({
data: {
progress: _.max(50)
}
})
评论列表