command.mulcommand.mul解释:数据库更新指令,用于将记录中的某个字段自乘指定的值。 代码示例 将 age 的值乘以 2: swan.cloud.init({ env: 'envId' }); const db = swan.cloud.database(); const _ = db.command; db.collection('users') .doc('docId') .update({ age: _.mul(2) })