wx.cloud.callFunction返回结果后调用本地函数bind不行?
在那个位置加bind不会报错,我想返回结果后,把结果显示在cocos label上
wx.cloud.callFunction({
name:‘top’,
data:{
name:’’
},
success(res){
console.log(‘成功’,res);
this.way();//调用方法,微信报错不存在该函数,bind后报错bind不是个函数
}
})