码迷,mamicode.com
首页 > 微信 > 详细

微信应用号小程序发起请求wx.request(OBJECT)

时间:2016-10-03 19:00:34      阅读:420      评论:0      收藏:0      [点我收藏+]

标签:

微信应用号小程序发起请求wx.request(OBJECT)

wx.request(OBJECT)

? wx.request发起的是https请求。一个微信小程序,同时只能有5个网络请求连接。

OBJECT参数说明:

参数名类型必填说明
url String 开发者服务器接口地址
data Object、String 请求的参数
header Object 设置请求的header , header中不能设置Referer
method String 默认为GET,有效值:OPTIONS,GET,HEAD,POST,PUT,DELETE,TRACE,CONNECT
success Function 收到开发者服务成功返回的回调函数,res = {data:"开发者服务器返回的内容"}
fail Function 接口调用失败的回调函数
complete Function 接口调用结束的回调函数(调用成功、失败都会执行)

示例代码:

wx.request({
  url: ‘http://qkxue.net/‘,
  data: {
     x: ‘‘ ,
     y: ‘‘
  },
  header:{
      "Content-Type":"application/json"
  },
  success: function(res) {
     var data = res.data;
  }
});
稿源:勤快学QKXue.NET

微信应用号小程序发起请求wx.request(OBJECT)

标签:

原文地址:http://www.cnblogs.com/qkxue/p/5929365.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!