微信小程序的wx.request请求方法,标准写法

Posted TaylorLambert

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序的wx.request请求方法,标准写法相关的知识,希望对你有一定的参考价值。

wx.request({
      url: https://127.0.0.1:8443/user/testRSA,//请求路径
      data:{
        column: output  //请求数据
      },
      header:{
        content-type:"application/json", //请求头
      },
      method:"POST", //请求方法
      dataType:"json",//请求类型
      success(data){  //请求成功的参数
        console.log(data);
      }
    })

 

以上是关于微信小程序的wx.request请求方法,标准写法的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序使用wx.request发送multipart/form-data请求的方法

php处理微信小程序request请求

监控微信小程序wx.request请求失败

【微信小程序】wx.request请求封装,超级简单

微信小程序wx.request接口

微信小程序 请求超时处理