wx.showLoading在onload调用在真机中会被关闭使用wx.hideLoading报错?
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();
},
})
},
[图片]