小程序官方请求封装
Posted 好想再胖十斤
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序官方请求封装相关的知识,希望对你有一定的参考价值。
POST
function _post(url, data, success, fail) { wx.request({ url: http +url, header: { ‘content-type‘: ‘application/x-www-form-urlencoded‘, }, method: ‘POST‘, data: data, success: function (res) { success(res); }, fail: function (res) { fail(res); } }); }
请求写法
http._post(‘XX/XX/XX‘,{DATA},function(res){},function(res){})
GET
function _get(url, success, fail) { wx.request({ url: myHttps+url, header: { ‘Content-Type‘: ‘application/json‘ }, success: function (res) { success(res); }, fail: function (res) { fail(res); } }); }
请求写法
http._get(‘XX/X/XX?id=id‘,function(res){},function(res){})
以上是关于小程序官方请求封装的主要内容,如果未能解决你的问题,请参考以下文章