收藏
回答

小程序执行showLoading后,不发送request请求

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

问题描述:用户发送请求后,页面执行一直在loading中,没有发送request请求。删除小程序包,重新进入,问题可解决

微信日志:本用户已经上传微信日志,上传日志时间:2020-05-19 20:03

微信号:w1962851827

  isValidate() {

  //showLoading页面有执行

    wx.showLoading({

      title: '加载中...',

    })

    //此处request没有请求记录

    return request({

      url: 'urlXXX',

      data: {

      },

      method: 'post'

    }).then((res) => {

      if (res.errorCode == 0 && res.data == '1') {

        return true;

      } else {

        wx.hideLoading();

        setTimeout(() => {

          wx.reLaunch({

            url: '/page/home/index',

          });

        }, 1500);

        return false;

      }

    }).catch((err) => {

      wx.hideLoading();

      this.toast(err.toString());

      return false;

    });

  },

最后一次编辑于  2020-05-19
回答关注问题邀请回答
收藏

4 个回答

登录 后发表内容
问题标签