首先,app中封装
//app.js
App({
globalData: {
userInfo: null,
url: '' //这个地方写你的url接口地址
},
/**
* 封装wx.request请求
* method: 请求方式
* url: 请求地址
* data: 要传递的参数
* callback: 请求成功回调函数
* errFun: 请求失败回调函数
* token: token值
**/
wxRequest(method, url, data, callback, errFun, token) {
wx.request({
url: url,
method: method,
data: data,
header: {
// application/x-www-form-urlencoded
'content-type': 'application/json;charset=UTF-8',
'Accept': 'application/json',
'token': token
},
dataType: 'json',
success: function (res) {
callback(res);
},
fail: function (err) {
errFun(err);
}
})
},
})
其次,局部调用
const app = getApp();
Page({
onLoad: function () {
let url = app.globalData.url + '/advert';
let data = {};
app.wxRequest('POST', url, data, (res) => {
console.log(res.data)
}, (err) => {
console.log(err.errMsg)
})
}
})
后来…更新了一下封装
wxRequest(method, url, data, token) {
return new Promise((resolve, reject) => {
wx.request({
url: url,
method: method,
data: data,
header: {
// application/x-www-form-urlencoded
'content-type': 'application/json;charset=UTF-8',
'Accept': 'application/json',
'token': token
},
dataType: 'json',
success: function (res) {
// callback(res);
if (res.data.code === '0000') {
resolve(res.data);
} else {
reject(res.data.message || '系统出小差了');
}
// resolve(res.data);
},
fail: function (err) {
// errFun(err);
reject(err);
}
})
})
},