db.collection('myclasslist').add({
data: {
cno: this.data.cno,
id: this.data.students.id,
sname: this.data.students.name,
depart: this.data.students.depart,
h: this.data.h,
min: this.data.min,
mon: this.data.mon,
d: this.data.d
}
}).then(res => {
wx.hideLoading();
wx.showToast({
title: '提交成功',
})
}).catch(err => {
wx.hideLoading();
wx.showToast({
title: '提交失败',
})
})
初学者,找不到原因是啥
使用云函数更新试试。
console.log(err) 打印一下看看什么错
建议你const {cno,id,sname,depart,h,min,mon,d}=this.data 好看点