// 云函数入口文件 const cloud = require('wx-server-sdk') cloud.init() // 云函数入口函数 exports.main = async (event, context) => { if(event.type==2){ return await cloud.database().collection('note').doc(event.itemid).update({ data:{ Collection:cloud.database().command.inc(-1) } }) }else return await cloud.database().collection('note').doc(event.itemid).update({ data:{ Collection:cloud.database().command.inc(1) } }) }