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

小程序请求接口封装函数

时间:2018-11-13 02:56:11      阅读:305      评论:0      收藏:0      [点我收藏+]

标签:func   封装   ade   content   json   success   type   ica   cat   

function RequestUrl(url, data, method, success, fail, complete) {
wx.request({
url: url,
data: data ? data : {},
header: {
‘content-type‘: ‘application/json‘,
‘Accept‘: ‘application/json‘
},
method: method ? method : ‘GET‘,
success: success ? success : function(){},
fail: fail ? fail : function(){},
complete: complete ? complete : function(){}
})
}

小程序请求接口封装函数

标签:func   封装   ade   content   json   success   type   ica   cat   

原文地址:https://www.cnblogs.com/studyh5/p/9949698.html

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