154  
查询码:00001050
小程序封装好的http.js实例
作者: 郁冲冲 于 2019年12月26日 发布在分类 / 人防组 / 人防前端 下,并于 2019年12月26日 编辑
小程序封装好的http.js实例

var rootDocment = "http://xdsy.jsdianshi.com/";

var header = {
'Accept': 'application/json',
'content-type': 'application/json',
'Authorization': null,
'content-type': 'application/x-www-form-urlencoded',
}
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),
console.log(data);
wx.request({
url: rootDocment + url,
// header: {
// 'content-type': 'application/x-www-form-urlencoded' // 默认值
// },
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,
}



 推荐知识

 历史版本

修改日期 修改人 备注
2019-12-26 14:40:51[当前版本] 郁冲冲 1.1.0

知识分享平台 -V 4.8.7 -wcp