<view class="weui-dialog__ft"> <button class="button-submit" style="width:250px" bindtap="submitResult">提交</button> </view> submitResult() { let name = this.data.name let phone = this.data.phone let wx = this.data.wx if(name =='' && phone == '' && wx == ''){ wx.showToast({ title: '请输入相应的信息', }) return } var data = { name: name, phone: phone, wx: wx, correctRate: this.data.correctRate, minutes: this.data.minutes, result: this.data.result, data: getApp().globalData.resultExams } console.log(data) wx.cloud.callFunction({ name: 'examResult', data: { type: 'add', data: data }, success: res=>{ console.log(res) } }) this.close() },
一个点击事件中报错?调用 wx.cloud.callFunction报 Cannot read property 'callFunction' of undefined TypeError: Cannot read property 'callFunction' of undefined 其他地方使用wx.cloud.callFunction一切正常
2020-07-01<a href="wechatide://minicode/gLb2Akmy7H2p" target="_blank">wechatide://minicode/gLb2Akmy7H2p</a> iphone7 ,6p 微信版本6.7.2
cover-view上的button不显示,无法open-type- cover-view可以使用button按钮 在开发者工具中可以使用 button的open-type功能 但是 真机无法使用 但是可以出发点击事件 能否解决一下 可以使用button按钮的open-type属性
2018-09-10