有没有大佬能解答一下我这个问题。。。数据库修改数据,什么时候返回"document.update:ok"什么时候返回"collection.update:ok"?
如果这个不是固定的,那我就不能判断这个了。。。
if (res.errMsg == "cloud.callFunction:ok") { //云函数请求成功
if (res.result.data.errMsg == "collection.update:ok") {
if (res.result.data.stats.updated == 1) { //更新成功
} else {
wx.showToast({
title: '更新失败,请刷新后再试。',
icon: 'none',
duration: 3000
})
}
}
}
doc().update()
collection().where().update()
分别是两种update,一目了解了。