小程序请求接口封装函数
Posted 金牛座的女孩
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序请求接口封装函数相关的知识,希望对你有一定的参考价值。
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(){}
})
}
以上是关于小程序请求接口封装函数的主要内容,如果未能解决你的问题,请参考以下文章