setSummary: function(id,summary) {
console.log(id, summary)
if (!wx.cloud) {
console.error('请使用 2.2.3 或以上的基础库以使用云能力')
} else {
wx.cloud.init({
})
}
// this.getData()
const db = wx.cloud.database()
let that = this
db.collection('m').doc(that.data._id).update({
data: {
summary: summary
},
success:function(res){
},
fail:function(res){
}
}
)
},
db.collection('m').doc(that.data._id).update({
改为
await db.collection('m').doc(that.data._id).update({
解释:数据库操作要改为异步。
错误信息是什么?
有时候输入
let <变量名> = await db.collection('m').doc(that.data._id).update({
也可以改到数据。
表的权限问题?