收藏
回答

wx.showLoading在onload调用在真机中会被关闭使用wx.hideLoading报错?

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug wx.showLoading 微信安卓客户端 8.0.20 2.23.2

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();
      },
    })
  },

回答关注问题邀请回答
收藏

2 个回答

登录 后发表内容