标签:request top 服务器 说明 成功 nbsp 示例 参数 code
wx.request(OBJECT) wx.request发起的是 HTTPS 请求。
OBJECT参数说明:
url->开发者服务器接口地址->String;
data->请求的参数->Object、String;
header->设置请求的 header , header 中不能设置 Referer->Object;
method->默认为 GET,有效值:OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT->String;
dataType->默认为 json。如果设置了 dataType 为 json,则会尝试对响应的数据做一次 JSON.parse->String;
success->收到开发者服务成功返回的回调函数,res = {data: ‘开发者服务器返回的内容‘}->Function;
fail->接口调用失败的回调函数->Function;
complete->接口调用结束的回调函数(调用成功、失败都会执行)->Function;
示例代码:
wx.request({ url: ‘https://www.kg1995.top/mvshop/index.php/Api/Wen/getlist‘, //仅为示例,并非真实的接口地址 data: { x: ‘‘ , y: ‘‘ }, header: { ‘content-type‘: ‘application/json‘ }, success: function(res) { console.log(res.data) } })
标签:request top 服务器 说明 成功 nbsp 示例 参数 code
原文地址:http://www.cnblogs.com/wyingli/p/6959395.html