微信小程序封装request请求

时间:2023-02-21 21:57:26
在小程序开发中,通过接口获取后台数据,这时候我们不得不在每个页面的js文件中写到:wx.request({
url:'',..... }) 但是调用很多接口的时候,会非常频繁的使用request,作为一名java开发人员,显然我们需要对他进行一下封装:

1.在utils同级目录下建立service
微信小程序封装request请求
2.typeof cb == "function" && cb(res.data) 我的理解是
利用的&&的运算规律,首先判断cb是不是一个方法, 这里的==可以作为类型是否相当的判断,然后在&&中如果前面的不满足,
后面的则不会执行;如果是cb是一个方法,调用cb方法,并且传入success成功回调的userinfo参数
并且return 的是回调函数,而不是具体的数据

var rootDocment = 'https://xxxxxxxxxxxxx/';var header = {
'Accept': 'application/json',
'content-type': 'application/json',
'Authorization': null,
}
function getReq(url, cb) {
wx.showLoading({
title: '加载中',
})
console.log("header=="),
console.log(header)
wx.request({
url: rootDocment + url,
method: 'get',
header: header,
success: function (res) {
wx.hideLoading();
return typeof cb == "function" && cb(res.data)
},
fail: function () {
wx.hideLoading();
wx.showModal({
title: '网络错误',
content: '网络出错,请刷新重试',
showCancel: false
})
return typeof cb == "function" && cb(false)
}
})
}

function postReq(url, data, cb) {
wx.showLoading({
title: '加载中',
})
console.log("header=="),
console.log(header),
wx.request({
url: rootDocment + url,
header: header,
data: data,
method: 'post',
success: function (res) {
wx.hideLoading();
return typeof cb == "function" && cb(res.data)
},
fail: function () {
wx.hideLoading();
wx.showModal({
title: '网络错误',
content: '网络出错,请刷新重试',
showCancel: false
})
return typeof cb == "function" && cb(false)
}
})

}
module.exports = {
getReq: getReq,
postReq: postReq,
header: header,
}
header 中的一些数据可能是需要在app.js中登录后返回的Token,这时候我们需要在app.js中
var http = require( 'service/http.js')
http.header.Authorization = 'Bearer '+res.data;//给header 赋值
// 将方法暴露出去
getReq: http.getReq,
postReq: http.postReq,

使用:
    http.getReq("item/getshopbanner/"+getApp().globalData.shopIdx,function(res){
console.log("banner==")
console.log(res)
})