wx.showLoading在onload调用在真机中会被关闭使用wx.hideLoading报错?
当从一个页面跳转到该页面时,在真机中会出现下列错误,当不使用wx.hideLoading时弹出的也会隐藏掉,开发者工具中没有问题。直接访问该页面也没有问题。
onLoad: function (options) {
wx.showLoading({
title: '加载中',
})
let that=this;
wx.request({
url: 'https://main2.cn/api/?a=getSwiper&itemId=1',
success:function(res){
if(res.data.isSuccessed){
that.setData({
banner:res.data.error.map(function(item) {
return {
url: item.url,
img: item.url
};
})
})
}
},
complete:function(res){
wx.hideLoading();
},
})
},
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
请问您解决了吗?我也遇到了这个问题。开发的时候没事,真机调试就出现这个。