近期项目封装get,post方式
config.js.js文件用来封装我们的 basUrl,
api.js用来统一管理我们的接口url,
http.js中封装axios,添加请求拦截和响应拦截。在请求拦截中,会给请求头添加token字段,还有loading动画的开启。在响应拦截中,可以做一些loading动画的关闭,还有可以根据后端返回的状态码,做一些检验token是否有效或者过期的操作。
//get方式
export function get(url, params={},config=null) {
config = config||{};
//https://www.jianshu.com/p/998e248daf3b
config = Object.assign({params:params,data:true,method:"get"},config);
return new Promise((resolve, reject) => {
axios.get(url, config).then(function (res) {
if (res.data.status == "success") {
resolve(res.data);
} else {
reject(res.data);
}
}).catch(function (err) {
reject(err.data);
})
});
}
//post方式
export function post(url, data = {}, method = 'post',config=null) {
config = config||{};
data=trimStr(data);
config = Object.assign({url:url,method:method,data:{ Head: {}, Data: typeof data == "object" ? JSON.stringify(data) : data }},config);
return new Promise((resolve, reject) => {
axios(config).then(function (res) {
if(res.data.status=="success"){
resolve(res.data.data);
}else{
reject(res.data);
}
}).catch(function (err) {
reject(err.data);
})
});
}
本人小白,各位想踏入前端的,我们可以一起学习,欢迎程序员大佬的指点