vue-vben-admin/src/utils/http/axios/index.ts

221 lines
7.0 KiB
TypeScript
Raw Normal View History

2020-09-28 20:19:10 +08:00
// axios配置 可自行根据项目进行更改,只需更改该文件即可,其他文件可以不动
// The axios configuration can be changed according to the project, just change the file, other files can be left unchanged
import type { AxiosResponse } from 'axios';
import type { CreateAxiosOptions, RequestOptions, Result } from './types';
import { VAxios } from './Axios';
import { getToken } from '/@/utils/auth';
import { AxiosTransform } from './axiosTransform';
import { checkStatus } from './checkStatus';
2020-11-23 23:24:13 +08:00
import { useGlobSetting } from '/@/hooks/setting';
2020-09-28 20:19:10 +08:00
import { useMessage } from '/@/hooks/web/useMessage';
import { RequestEnum, ResultEnum, ContentTypeEnum } from '/@/enums/httpEnum';
import { isString } from '/@/utils/is';
import { setObjToUrlParams, deepMerge } from '/@/utils';
2020-10-18 21:55:21 +08:00
import { errorStore } from '/@/store/modules/error';
import { errorResult } from './const';
2020-11-26 21:10:21 +08:00
import { useI18n } from '/@/hooks/web/useI18n';
2020-12-15 21:27:45 +08:00
import { createNow, formatRequestDate } from './helper';
2020-09-28 20:19:10 +08:00
2020-11-23 00:35:15 +08:00
const globSetting = useGlobSetting();
2020-09-28 20:19:10 +08:00
const prefix = globSetting.urlPrefix;
const { createMessage, createErrorModal } = useMessage();
/**
* @description: 便
*/
const transform: AxiosTransform = {
/**
* @description:
*/
transformRequestData: (res: AxiosResponse<Result>, options: RequestOptions) => {
2020-12-01 23:51:39 +08:00
const { t } = useI18n();
2020-09-28 20:19:10 +08:00
const { isTransformRequestResult } = options;
// 不进行任何处理,直接返回
// 用于页面代码可能需要直接获取codedatamessage这些信息时开启
if (!isTransformRequestResult) {
return res.data;
}
// 错误的时候返回
const { data } = res;
if (!data) {
// return '[HTTP] Request has no return value';
return errorResult;
}
// 这里 coderesultmessage为 后台统一的字段,需要在 types.ts内修改为项目自己的接口返回格式
const { code, result, message } = data;
// 这里逻辑可以根据项目进行修改
const hasSuccess = data && Reflect.has(data, 'code') && code === ResultEnum.SUCCESS;
if (!hasSuccess) {
if (message) {
// errorMessageMode=modal的时候会显示modal错误弹窗而不是消息提示用于一些比较重要的错误
if (options.errorMessageMode === 'modal') {
2020-12-01 23:51:39 +08:00
createErrorModal({ title: t('sys.api.errorTip'), content: message });
} else if (options.errorMessageMode === 'message') {
2020-09-28 20:19:10 +08:00
createMessage.error(message);
}
}
Promise.reject(new Error(message));
return errorResult;
}
// 接口请求成功,直接返回结果
if (code === ResultEnum.SUCCESS) {
return result;
2020-09-28 20:19:10 +08:00
}
// 接口请求错误,统一提示错误信息
if (code === ResultEnum.ERROR) {
if (message) {
createMessage.error(data.message);
Promise.reject(new Error(message));
} else {
2020-12-01 23:51:39 +08:00
const msg = t('sys.api.errorMessage');
2020-09-28 20:19:10 +08:00
createMessage.error(msg);
Promise.reject(new Error(msg));
}
return errorResult;
}
// 登录超时
if (code === ResultEnum.TIMEOUT) {
2020-12-01 23:51:39 +08:00
const timeoutMsg = t('sys.api.timeoutMessage');
2020-09-28 20:19:10 +08:00
createErrorModal({
2020-12-01 23:51:39 +08:00
title: t('sys.api.operationFailed'),
2020-09-28 20:19:10 +08:00
content: timeoutMsg,
});
Promise.reject(new Error(timeoutMsg));
return errorResult;
}
return errorResult;
},
// 请求之前处理config
beforeRequestHook: (config, options) => {
2020-12-15 21:27:45 +08:00
const { apiUrl, joinPrefix, joinParamsToUrl, formatDate, joinTime = true } = options;
2020-09-28 20:19:10 +08:00
if (joinPrefix) {
config.url = `${prefix}${config.url}`;
}
if (apiUrl && isString(apiUrl)) {
config.url = `${apiUrl}${config.url}`;
}
2020-12-27 22:25:35 +08:00
const params = config.params || {};
if (config.method?.toUpperCase() === RequestEnum.GET) {
2020-12-27 22:25:35 +08:00
if (!isString(params)) {
2020-09-28 20:19:10 +08:00
config.data = {
// 给 get 请求加上时间戳参数,避免从缓存中拿数据。
2020-12-27 22:25:35 +08:00
params: Object.assign(params || {}, createNow(joinTime, false)),
2020-09-28 20:19:10 +08:00
};
} else {
// 兼容restful风格
2020-12-27 22:25:35 +08:00
config.url = config.url + params + `${createNow(joinTime, true)}`;
config.params = undefined;
2020-09-28 20:19:10 +08:00
}
} else {
2020-12-27 22:25:35 +08:00
if (!isString(params)) {
formatDate && formatRequestDate(params);
config.data = params;
config.params = undefined;
2020-09-28 20:19:10 +08:00
if (joinParamsToUrl) {
config.url = setObjToUrlParams(config.url as string, config.data);
}
} else {
// 兼容restful风格
2020-12-27 22:25:35 +08:00
config.url = config.url + params;
config.params = undefined;
2020-09-28 20:19:10 +08:00
}
}
return config;
},
/**
* @description:
*/
requestInterceptors: (config) => {
// 请求之前处理config
const token = getToken();
if (token) {
// jwt token
config.headers.Authorization = token;
}
return config;
},
/**
* @description:
*/
responseInterceptorsCatch: (error: any) => {
2020-12-01 23:51:39 +08:00
const { t } = useI18n();
2020-10-18 21:55:21 +08:00
errorStore.setupErrorHandle(error);
2020-09-28 20:19:10 +08:00
const { response, code, message } = error || {};
2021-01-07 21:16:30 +08:00
const msg: string = response?.data?.error?.message ?? '';
const err: string = error?.toString?.() ?? '';
2020-09-28 20:19:10 +08:00
try {
if (code === 'ECONNABORTED' && message.indexOf('timeout') !== -1) {
2020-12-01 23:51:39 +08:00
createMessage.error(t('sys.api.apiTimeoutMessage'));
2020-09-28 20:19:10 +08:00
}
if (err?.includes('Network Error')) {
2020-09-28 20:19:10 +08:00
createErrorModal({
2020-12-01 23:51:39 +08:00
title: t('sys.api.networkException'),
content: t('sys.api.networkExceptionMsg'),
2020-09-28 20:19:10 +08:00
});
}
} catch (error) {
throw new Error(error);
}
checkStatus(error?.response?.status, msg);
2020-11-15 13:22:34 +08:00
return Promise.reject(error);
2020-09-28 20:19:10 +08:00
},
};
function createAxios(opt?: Partial<CreateAxiosOptions>) {
return new VAxios(
deepMerge(
{
timeout: 10 * 1000,
// 基础接口地址
// baseURL: globSetting.apiUrl,
// 接口可能会有通用的地址部分,可以统一抽取出来
prefixUrl: prefix,
headers: { 'Content-Type': ContentTypeEnum.JSON },
2020-12-15 21:27:45 +08:00
// 如果是form-data格式
// headers: { 'Content-Type': ContentTypeEnum.FORM_URLENCODED },
2020-09-28 20:19:10 +08:00
// 数据处理方式
transform,
// 配置项,下面的选项都可以在独立的接口请求中覆盖
requestOptions: {
// 默认将prefix 添加到url
joinPrefix: true,
// 需要对返回数据进行处理
isTransformRequestResult: true,
// post请求的时候添加参数到url
joinParamsToUrl: false,
// 格式化提交参数时间
formatDate: true,
// 消息提示类型
errorMessageMode: 'message',
2020-09-28 20:19:10 +08:00
// 接口地址
apiUrl: globSetting.apiUrl,
2020-12-15 21:27:45 +08:00
// 是否加入时间戳
joinTime: true,
2020-09-28 20:19:10 +08:00
},
},
opt || {}
)
);
}
export const defHttp = createAxios();
// other api url
// export const otherHttp = createAxios({
// requestOptions: {
// apiUrl: 'xxx',
// },
// });