小程序端的云函数更新数据时条件where这样后未更新数据,是何原因?(云端测试成功的)
//功能根据保健号(数字型)修改预约的日期、时间和预订日期
updateapp: function (strid,strxq,strsj,strrq) {
wx.cloud.callFunction({
name: ‘updateapp’,
where: {
healthcode: strid,
},
data: {
appointweek: strxq,
appointtime: strsj,
appdate: strrq
},
success: function (res){
console.log(res)
}, fail: function (res) {
console.log(res)
}
})
},