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';
|
2021-06-17 23:25:31 +08:00
|
|
|
|
import type { RequestOptions, Result } from '/#/axios';
|
2021-03-08 21:19:09 +08:00
|
|
|
|
import type { AxiosTransform, CreateAxiosOptions } from './axiosTransform';
|
|
|
|
|
|
import { VAxios } from './Axios';
|
2020-09-28 20:19:10 +08:00
|
|
|
|
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';
|
2021-03-08 21:19:09 +08:00
|
|
|
|
import { getToken } from '/@/utils/auth';
|
2020-09-28 20:19:10 +08:00
|
|
|
|
import { setObjToUrlParams, deepMerge } from '/@/utils';
|
2021-04-10 19:25:49 +08:00
|
|
|
|
import { useErrorLogStoreWithOut } from '/@/store/modules/errorLog';
|
2020-11-26 21:10:21 +08:00
|
|
|
|
import { useI18n } from '/@/hooks/web/useI18n';
|
2021-06-06 15:08:01 +08:00
|
|
|
|
import { joinTimestamp, formatRequestDate } from './helper';
|
2020-09-28 20:19:10 +08:00
|
|
|
|
|
2020-11-23 00:35:15 +08:00
|
|
|
|
const globSetting = useGlobSetting();
|
2021-06-06 15:08:01 +08:00
|
|
|
|
const urlPrefix = globSetting.urlPrefix;
|
2020-09-28 20:19:10 +08:00
|
|
|
|
const { createMessage, createErrorModal } = useMessage();
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @description: 数据处理,方便区分多种处理方式
|
|
|
|
|
|
*/
|
|
|
|
|
|
const transform: AxiosTransform = {
|
|
|
|
|
|
/**
|
2021-05-28 00:07:28 +08:00
|
|
|
|
* @description: 处理请求数据。如果数据不是预期格式,可直接抛出错误
|
2020-09-28 20:19:10 +08:00
|
|
|
|
*/
|
2021-02-26 22:45:36 +08:00
|
|
|
|
transformRequestHook: (res: AxiosResponse<Result>, options: RequestOptions) => {
|
2020-12-01 23:51:39 +08:00
|
|
|
|
const { t } = useI18n();
|
2021-06-17 23:25:31 +08:00
|
|
|
|
const { isTransformResponse, isReturnNativeResponse } = options;
|
2021-05-12 13:19:14 +08:00
|
|
|
|
// 是否返回原生响应头 比如:需要获取响应头时使用该属性
|
|
|
|
|
|
if (isReturnNativeResponse) {
|
|
|
|
|
|
return res;
|
|
|
|
|
|
}
|
2020-09-28 20:19:10 +08:00
|
|
|
|
// 不进行任何处理,直接返回
|
|
|
|
|
|
// 用于页面代码可能需要直接获取code,data,message这些信息时开启
|
2021-06-17 23:25:31 +08:00
|
|
|
|
if (!isTransformResponse) {
|
2020-09-28 20:19:10 +08:00
|
|
|
|
return res.data;
|
|
|
|
|
|
}
|
|
|
|
|
|
// 错误的时候返回
|
|
|
|
|
|
|
|
|
|
|
|
const { data } = res;
|
|
|
|
|
|
if (!data) {
|
|
|
|
|
|
// return '[HTTP] Request has no return value';
|
2021-05-28 00:07:28 +08:00
|
|
|
|
throw new Error(t('sys.api.apiRequestFailed'));
|
2020-09-28 20:19:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
// 这里 code,result,message为 后台统一的字段,需要在 types.ts内修改为项目自己的接口返回格式
|
|
|
|
|
|
const { code, result, message } = data;
|
|
|
|
|
|
|
|
|
|
|
|
// 这里逻辑可以根据项目进行修改
|
|
|
|
|
|
const hasSuccess = data && Reflect.has(data, 'code') && code === ResultEnum.SUCCESS;
|
2021-06-04 14:18:22 +08:00
|
|
|
|
if (hasSuccess) {
|
2020-10-13 01:40:18 +08:00
|
|
|
|
return result;
|
2020-09-28 20:19:10 +08:00
|
|
|
|
}
|
2021-06-04 14:18:22 +08:00
|
|
|
|
|
|
|
|
|
|
// 在此处根据自己项目的实际情况对不同的code执行不同的操作
|
|
|
|
|
|
// 如果不希望中断当前请求,请return数据,否则直接抛出异常即可
|
2021-06-16 22:34:32 +08:00
|
|
|
|
let timeoutMsg = '';
|
2021-06-04 14:18:22 +08:00
|
|
|
|
switch (code) {
|
|
|
|
|
|
case ResultEnum.TIMEOUT:
|
2021-06-16 22:34:32 +08:00
|
|
|
|
timeoutMsg = t('sys.api.timeoutMessage');
|
2021-06-04 14:18:22 +08:00
|
|
|
|
default:
|
|
|
|
|
|
if (message) {
|
2021-06-16 22:34:32 +08:00
|
|
|
|
timeoutMsg = message;
|
2021-06-04 14:18:22 +08:00
|
|
|
|
}
|
2020-09-28 20:19:10 +08:00
|
|
|
|
}
|
2021-06-16 22:34:32 +08:00
|
|
|
|
|
|
|
|
|
|
// errorMessageMode=‘modal’的时候会显示modal错误弹窗,而不是消息提示,用于一些比较重要的错误
|
|
|
|
|
|
// errorMessageMode='none' 一般是调用时明确表示不希望自动弹出错误提示
|
|
|
|
|
|
if (options.errorMessageMode === 'modal') {
|
|
|
|
|
|
createErrorModal({ title: t('sys.api.errorTip'), content: timeoutMsg });
|
|
|
|
|
|
} else if (options.errorMessageMode === 'message') {
|
|
|
|
|
|
createMessage.error(timeoutMsg);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
throw new Error(timeoutMsg || t('sys.api.apiRequestFailed'));
|
2020-09-28 20:19:10 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 请求之前处理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) {
|
2021-06-06 15:08:01 +08:00
|
|
|
|
config.url = `${urlPrefix}${config.url}`;
|
2020-09-28 20:19:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (apiUrl && isString(apiUrl)) {
|
|
|
|
|
|
config.url = `${apiUrl}${config.url}`;
|
|
|
|
|
|
}
|
2020-12-27 22:25:35 +08:00
|
|
|
|
const params = config.params || {};
|
2020-12-12 00:15:36 +08:00
|
|
|
|
if (config.method?.toUpperCase() === RequestEnum.GET) {
|
2020-12-27 22:25:35 +08:00
|
|
|
|
if (!isString(params)) {
|
2021-01-11 21:30:43 +08:00
|
|
|
|
// 给 get 请求加上时间戳参数,避免从缓存中拿数据。
|
2021-06-06 15:08:01 +08:00
|
|
|
|
config.params = Object.assign(params || {}, joinTimestamp(joinTime, false));
|
2020-09-28 20:19:10 +08:00
|
|
|
|
} else {
|
|
|
|
|
|
// 兼容restful风格
|
2021-06-06 15:08:01 +08:00
|
|
|
|
config.url = config.url + params + `${joinTimestamp(joinTime, true)}`;
|
2020-10-28 23:00:03 +08:00
|
|
|
|
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;
|
2020-10-28 23:00:03 +08:00
|
|
|
|
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;
|
2020-10-28 23:00:03 +08:00
|
|
|
|
config.params = undefined;
|
2020-09-28 20:19:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return config;
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @description: 请求拦截器处理
|
|
|
|
|
|
*/
|
2021-06-17 23:25:31 +08:00
|
|
|
|
requestInterceptors: (config, options) => {
|
2020-09-28 20:19:10 +08:00
|
|
|
|
// 请求之前处理config
|
2021-03-08 21:19:09 +08:00
|
|
|
|
const token = getToken();
|
2020-09-28 20:19:10 +08:00
|
|
|
|
if (token) {
|
|
|
|
|
|
// jwt token
|
2021-06-17 23:25:31 +08:00
|
|
|
|
config.headers.Authorization = options.authenticationScheme
|
|
|
|
|
|
? `${options.authenticationScheme} ${token}`
|
|
|
|
|
|
: token;
|
2020-09-28 20:19:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
return config;
|
|
|
|
|
|
},
|
|
|
|
|
|
|
2021-06-16 22:34:32 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* @description: 响应拦截器处理
|
|
|
|
|
|
*/
|
|
|
|
|
|
responseInterceptors: (res: AxiosResponse<any>) => {
|
|
|
|
|
|
return res;
|
|
|
|
|
|
},
|
|
|
|
|
|
|
2020-09-28 20:19:10 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* @description: 响应错误处理
|
|
|
|
|
|
*/
|
|
|
|
|
|
responseInterceptorsCatch: (error: any) => {
|
2020-12-01 23:51:39 +08:00
|
|
|
|
const { t } = useI18n();
|
2021-04-10 19:25:49 +08:00
|
|
|
|
const errorLogStore = useErrorLogStoreWithOut();
|
|
|
|
|
|
errorLogStore.addAjaxErrorInfo(error);
|
2021-06-16 22:34:32 +08:00
|
|
|
|
const { response, code, message, config } = error || {};
|
|
|
|
|
|
const errorMessageMode = config?.requestOptions?.errorMessageMode || 'none';
|
2021-01-07 21:16:30 +08:00
|
|
|
|
const msg: string = response?.data?.error?.message ?? '';
|
|
|
|
|
|
const err: string = error?.toString?.() ?? '';
|
2021-06-16 22:34:32 +08:00
|
|
|
|
let errMessage = '';
|
|
|
|
|
|
|
2020-09-28 20:19:10 +08:00
|
|
|
|
try {
|
|
|
|
|
|
if (code === 'ECONNABORTED' && message.indexOf('timeout') !== -1) {
|
2021-06-16 22:34:32 +08:00
|
|
|
|
errMessage = t('sys.api.apiTimeoutMessage');
|
2020-09-28 20:19:10 +08:00
|
|
|
|
}
|
2020-12-12 00:15:36 +08:00
|
|
|
|
if (err?.includes('Network Error')) {
|
2021-06-16 22:34:32 +08:00
|
|
|
|
errMessage = t('sys.api.networkExceptionMsg');
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (errMessage) {
|
|
|
|
|
|
if (errorMessageMode === 'modal') {
|
|
|
|
|
|
createErrorModal({ title: t('sys.api.errorTip'), content: errMessage });
|
|
|
|
|
|
} else if (errorMessageMode === 'message') {
|
|
|
|
|
|
createMessage.error(errMessage);
|
|
|
|
|
|
}
|
|
|
|
|
|
return Promise.reject(error);
|
2020-09-28 20:19:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
throw new Error(error);
|
|
|
|
|
|
}
|
2021-06-16 22:34:32 +08:00
|
|
|
|
|
|
|
|
|
|
checkStatus(error?.response?.status, msg, errorMessageMode);
|
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(
|
|
|
|
|
|
{
|
2021-06-17 23:25:31 +08:00
|
|
|
|
// See https://developer.mozilla.org/en-US/docs/Web/HTTP/Authentication#authentication_schemes
|
|
|
|
|
|
// authentication schemes,e.g: Bearer
|
|
|
|
|
|
// authenticationScheme: 'Bearer',
|
|
|
|
|
|
authenticationScheme: '',
|
2020-09-28 20:19:10 +08:00
|
|
|
|
timeout: 10 * 1000,
|
|
|
|
|
|
// 基础接口地址
|
2021-06-26 12:14:06 +08:00
|
|
|
|
// baseURL: globSetting.apiUrl,
|
2020-09-28 20:19:10 +08:00
|
|
|
|
// 接口可能会有通用的地址部分,可以统一抽取出来
|
2021-06-06 15:08:01 +08:00
|
|
|
|
urlPrefix: urlPrefix,
|
2020-09-28 20:19:10 +08:00
|
|
|
|
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,
|
2021-05-12 13:19:14 +08:00
|
|
|
|
// 是否返回原生响应头 比如:需要获取响应头时使用该属性
|
|
|
|
|
|
isReturnNativeResponse: false,
|
2020-09-28 20:19:10 +08:00
|
|
|
|
// 需要对返回数据进行处理
|
2021-06-17 23:25:31 +08:00
|
|
|
|
isTransformResponse: true,
|
2020-09-28 20:19:10 +08:00
|
|
|
|
// post请求的时候添加参数到url
|
|
|
|
|
|
joinParamsToUrl: false,
|
|
|
|
|
|
// 格式化提交参数时间
|
|
|
|
|
|
formatDate: true,
|
|
|
|
|
|
// 消息提示类型
|
2020-12-09 22:11:34 +08:00
|
|
|
|
errorMessageMode: 'message',
|
2020-09-28 20:19:10 +08:00
|
|
|
|
// 接口地址
|
|
|
|
|
|
apiUrl: globSetting.apiUrl,
|
2020-12-15 21:27:45 +08:00
|
|
|
|
// 是否加入时间戳
|
|
|
|
|
|
joinTime: true,
|
2021-03-01 22:54:21 +08:00
|
|
|
|
// 忽略重复请求
|
|
|
|
|
|
ignoreCancelToken: true,
|
2020-09-28 20:19:10 +08:00
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
opt || {}
|
|
|
|
|
|
)
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
export const defHttp = createAxios();
|
|
|
|
|
|
|
|
|
|
|
|
// other api url
|
|
|
|
|
|
// export const otherHttp = createAxios({
|
|
|
|
|
|
// requestOptions: {
|
|
|
|
|
|
// apiUrl: 'xxx',
|
|
|
|
|
|
// },
|
|
|
|
|
|
// });
|