vue项目 封装request请求(动态区分两个请求地址)
vue项目 封装request请求(动态区分两个请求地址)
·
在目录中创建 utils 文件 中创建 request.js
/**** request.js ****/
// 导入axios
import axios from 'axios';
// 使用element-ui Notification做消息提醒
import { Notification } from 'element-ui'
let baseURL = 'http://192.168.42.3:10001'; //index.html引入的
let baseURL2 = 'http://192.168.42.3:9095';
//1. 创建新的axios实例,
const service = axios.create({
// 超时时间 单位是ms,这里设置了8s的超时时间
timeout: 8 * 1000,
});
// 2.请求拦截器
service.interceptors.request.use(
(config) => {
//发请求前做的一些处理,数据转化,配置请求头,设置token,设置loading等,根据需求去添加
config.data = JSON.stringify(config.data); //数据转化,也可以使用qs转换
console.log('config', config.data);
config.headers = {
'Content-Type': 'multipart/form-data', //配置请求头
// 'Content-Type':'multipart/form-data; boundary=ZnGpDtePMx0KrHh_G0X99Yef9r8JZsRJSXC'
};
config.contentType = 'application/x-www-form-urlencoded'
switch (config.urlType) {
case 'api1':
config.url = baseURL + config.url;
break;
case 'api2':
config.url = baseURL2 + config.url;
break;
default:
config.url = baseURL + config.url;
}
//注意使用token的时候需要引入cookie方法或者用本地localStorage等方法,推荐js-cookie
// const token = getCookie('名称');//这里取token之前,你肯定需要先拿到token,存一下
// if(token){
// config.params = {'token':token} //如果要求携带在参数中
// config.headers.token= token; //如果要求携带在请求头中
// }
return config;
},
(error) => {
Promise.reject(error);
},
);
// 3.响应拦截器
service.interceptors.response.use(
(response) => {
//接收到响应数据并成功后的一些共有的处理,关闭loading等
return response;
},
(error) => {
/***** 接收到异常响应的处理开始 *****/
if (error && error.response) {
// 1.公共错误处理
// 2.根据响应码具体处理
if (error.response.code != 10000) {
Notification.error({
title: error.response.data.message,
duration: 5000
})
}
} else {
// 超时处理
if (JSON.stringify(error).includes('timeout')) {
Notification.error('服务器响应超时,请刷新当前页');
}
error.message = '连接服务器失败';
}
Notification.error(error.message);
/***** 处理结束 *****/
//如果不需要错误处理,以上的处理过程都可省略
return Promise.resolve(error.response);
},
);
//4.导入文件
export default service;
http.js 文件 是对请求方法进行的封装
/**** http.js ****/
// 导入封装好的axios实例
import request from './request';
const http = {
/**
* methods: 请求
* @param url 请求地址
* @param params 请求参数
*/
get(url, params, type) {
const config = {
method: 'get',
url: url,
urlType: type,
};
if (params) {
config.data = params;
}
return request(config);
},
post(url, params, type) {
const config = {
method: 'post',
url: url,
urlType: type,
};
if (params) config.data = params;
return request(config);
},
put(url, params, type) {
const config = {
method: 'put',
url: url,
urlType: type,
};
if (params) config.data = params;
return request(config);
},
delete(url, params, type) {
const config = {
method: 'delete',
url: url,
urlType: type,
};
if (params) config.data = params;
return request(config);
},
};
//导出
export default http;
新建api文件,配置请求接口
tip:因为项目中 所用到的接口,地址有两个,所以在封装的时候进行了配置
页面使用:
1.引入需要用到的接口
import { getOverview, getCount, getAnalysisOverview } from "@/api/TaskService";
2.方法中调用接口
handleComprehensive() {
let dataStr = {
dateStr: this.dateComprehenValue,
sign: "iidie99e999e99e9e",
};
getAnalysisOverview(dataStr).then((res) => {
if (res.data && res.data.code == "10000") {
console.log(res.data, "res.data");
}
});
},
更多推荐
已为社区贡献36条内容
所有评论(0)