收藏
回答

​wx.request无法发请求

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug ​wx.request 客户端 6.6.7 2.4.1

- 当前 Bug 的表现(可附上截图)


- 预期表现


- 复现路径


- 提供一个最简复现 Demo

  onLoad: function (options) {

    var that = this;

    wx.login({

      success: (res) => {

        //获取小程序openid

        wx.request({

          url: options.Host + '/?scode=' + res.code,

          method: "GET",

          header: {

            'content-type': 'application/json'

          },

          success: (result) => {

            getApp().openid = result.data.openid;

            that.requestOrder(options, that);        

          },

         

          fail: (result) => {

          }

        });

      },

      fail: (res) => {

      }

    });

  },


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

2 个回答

登录 后发表内容