:236
onShow里wx.showLoading页面不展示?onShow一进来页面里app.globalData.err_code为空时,wx.showLoading执行了,success成功回调了,也显示了,但是在返回到这个页面,app.globalData.err_code有值了,但是(体验版)页面木有loading展示,succe也是执行的,真机调试都没有问题!!!!!苹果ios 11 onShow: function(){ const that=this; that.setData({ code: "", },()=>{ wx.showLoading({ title: 'title1', mask: true, success: function(){ console.log(71717) } }) console.log(65,app.globalData,app.globalData.err_code); if(app.globalData && app.globalData.err_code){ wx.showLoading({ title: 'title2', mask: true, success: function(){ console.log(71717) } }) console.log(66); } }) },
2021-09-05