收藏
回答

云函数如何同时更新两个集合?

需要同时更新两个集合的相同字段

exports.main = async(event, context) => {

try {

return await db.collection('t1','t2').where({

p1: event.p1,

p2: event.p2

})

.update({

data: {

p3: event.p3

},

} catch (e) {

console.error(e)

}

这样写只能更新t1,不能更新t2,不知道怎么同时更新

回答关注问题邀请回答
收藏
登录 后发表内容
问题标签