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);
}
})
},
可能是体验版缓存问题,清除一下缓存试试
1、同样的代码先在onLoad里执行看看。
2、setTimeout一下。
页面正在切换之间,有时showToast一类不生效。