You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
218 lines
7.3 KiB
218 lines
7.3 KiB
// 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 { RequestOptions, Result } from '/#/axios';
|
|
import type { AxiosTransform, CreateAxiosOptions } from './axiosTransform';
|
|
import { VAxios } from './Axios';
|
|
import { checkResponse } from './checkStatus';
|
|
import { useGlobSetting } from '/@/hooks/setting';
|
|
import { useMessage } from '/@/hooks/web/useMessage';
|
|
import { RequestEnum, ResultEnum, ContentTypeEnum } from '/@/enums/httpEnum';
|
|
import { isString } from '/@/utils/is';
|
|
import { getToken } from '/@/utils/auth';
|
|
import { useI18n } from '/@/hooks/web/useI18n';
|
|
import { setObjToUrlParams, deepMerge } from '/@/utils';
|
|
import { useErrorLogStoreWithOut } from '/@/store/modules/errorLog';
|
|
import { joinTimestamp, formatRequestDate } from './helper';
|
|
import { useLocaleStoreWithOut } from '/@/store/modules/locale';
|
|
import { Persistent } from '../../cache/persistent';
|
|
|
|
const globSetting = useGlobSetting();
|
|
const urlPrefix = globSetting.urlPrefix;
|
|
const { createMessage, createErrorModal } = useMessage();
|
|
|
|
/**
|
|
* @description: 数据处理,方便区分多种处理方式
|
|
*/
|
|
const transform: AxiosTransform = {
|
|
/**
|
|
* @description: 处理请求数据。如果数据不是预期格式,可直接抛出错误
|
|
*/
|
|
transformRequestHook: (res: AxiosResponse<Result>, options: RequestOptions) => {
|
|
const { t } = useI18n();
|
|
const { isReturnNativeResponse } = options;
|
|
// 是否返回原生响应头 比如:需要获取响应头时使用该属性
|
|
if (isReturnNativeResponse) {
|
|
return res;
|
|
}
|
|
|
|
const { data } = res;
|
|
if (!data) {
|
|
// return '[HTTP] Request has no return value';
|
|
throw new Error(t('sys.api.apiRequestFailed'));
|
|
}
|
|
|
|
// 对包装结果处理
|
|
if (res.headers['_abpwrapresult'] === 'true') {
|
|
const { code, result, message, details } = data;
|
|
const hasSuccess = data && Reflect.has(data, 'code') && code === ResultEnum.CODE;
|
|
if (hasSuccess) {
|
|
return result;
|
|
}
|
|
|
|
const title = details ? message : t('sys.api.errorTip');
|
|
const content = details ? details : message;
|
|
if (options.errorMessageMode === 'modal') {
|
|
createErrorModal({ title: title, content: content });
|
|
} else if (options.errorMessageMode === 'message') {
|
|
createMessage.error(content);
|
|
}
|
|
|
|
throw new Error(content || t('sys.api.apiRequestFailed'));
|
|
}
|
|
|
|
return res.data;
|
|
},
|
|
|
|
// 请求之前处理config
|
|
beforeRequestHook: (config, options) => {
|
|
const { apiUrl, joinPrefix, joinParamsToUrl, formatDate, joinTime = true, urlPrefix } = options;
|
|
|
|
if (joinPrefix) {
|
|
config.url = `${urlPrefix}${config.url}`;
|
|
}
|
|
|
|
if (apiUrl && isString(apiUrl)) {
|
|
config.url = `${apiUrl}${config.url}`;
|
|
}
|
|
const params = config.params || {};
|
|
const data = config.data || false;
|
|
formatDate && data && !isString(data) && formatRequestDate(data);
|
|
if (config.method?.toUpperCase() === RequestEnum.GET) {
|
|
if (!isString(params)) {
|
|
// 给 get 请求加上时间戳参数,避免从缓存中拿数据。
|
|
config.params = Object.assign(params || {}, joinTimestamp(joinTime, false));
|
|
} else {
|
|
// 兼容restful风格
|
|
config.url = config.url + params + `${joinTimestamp(joinTime, true)}`;
|
|
config.params = undefined;
|
|
}
|
|
} else {
|
|
if (!isString(params)) {
|
|
formatDate && formatRequestDate(params);
|
|
if (Reflect.has(config, 'data') && config.data && Object.keys(config.data).length > 0) {
|
|
config.data = data;
|
|
config.params = params;
|
|
} else {
|
|
// 非GET请求如果没有提供data,则将params视为data
|
|
config.data = params;
|
|
config.params = undefined;
|
|
}
|
|
if (joinParamsToUrl) {
|
|
config.url = setObjToUrlParams(
|
|
config.url as string,
|
|
Object.assign({}, config.params, config.data),
|
|
);
|
|
}
|
|
} else {
|
|
// 兼容restful风格
|
|
config.url = config.url + params;
|
|
config.params = undefined;
|
|
}
|
|
}
|
|
return config;
|
|
},
|
|
|
|
/**
|
|
* @description: 请求拦截器处理
|
|
*/
|
|
requestInterceptors: (config, options) => {
|
|
// 请求之前处理config
|
|
const token = getToken();
|
|
if (token && (config as Recordable)?.requestOptions?.withToken !== false) {
|
|
// jwt token
|
|
(config as Recordable).headers.Authorization = options.authenticationScheme
|
|
? `${options.authenticationScheme} ${token}`
|
|
: token;
|
|
}
|
|
|
|
config.headers = config.headers ?? {};
|
|
const localeStore = useLocaleStoreWithOut();
|
|
config.headers['Accept-Language'] = localeStore.getLocale;
|
|
const tenant = Persistent.getTenant();
|
|
if (tenant && tenant.id) {
|
|
config.headers[globSetting.multiTenantKey] = tenant.id;
|
|
}
|
|
return config;
|
|
},
|
|
|
|
/**
|
|
* @description: 响应拦截器处理
|
|
*/
|
|
responseInterceptors: (res: AxiosResponse<any>) => {
|
|
return res;
|
|
},
|
|
|
|
/**
|
|
* @description: 响应错误处理
|
|
*/
|
|
responseInterceptorsCatch: (error: any) => {
|
|
// const { t } = useI18n();
|
|
const errorLogStore = useErrorLogStoreWithOut();
|
|
errorLogStore.addAjaxErrorInfo(error);
|
|
checkResponse(error.response);
|
|
return Promise.reject(error);
|
|
},
|
|
};
|
|
|
|
function createAxios(opt?: Partial<CreateAxiosOptions>) {
|
|
return new VAxios(
|
|
deepMerge(
|
|
{
|
|
// See https://developer.mozilla.org/en-US/docs/Web/HTTP/Authentication#authentication_schemes
|
|
// authentication schemes,e.g: Bearer
|
|
// authenticationScheme: 'Bearer',
|
|
authenticationScheme: 'Bearer',
|
|
timeout: 30 * 1000,
|
|
// 基础接口地址
|
|
// baseURL: globSetting.apiUrl,
|
|
|
|
headers: { 'Content-Type': ContentTypeEnum.JSON },
|
|
// 如果是form-data格式
|
|
// headers: { 'Content-Type': ContentTypeEnum.FORM_URLENCODED },
|
|
// 数据处理方式
|
|
transform,
|
|
xsrfCookieName: 'XSRF-TOKEN',
|
|
// ASP.NET Core
|
|
xsrfHeaderName: 'RequestVerificationToken',
|
|
// 配置项,下面的选项都可以在独立的接口请求中覆盖
|
|
requestOptions: {
|
|
// 默认将prefix 添加到url
|
|
joinPrefix: true,
|
|
// 是否返回原生响应头 比如:需要获取响应头时使用该属性
|
|
isReturnNativeResponse: false,
|
|
// 需要对返回数据进行处理
|
|
isTransformRequestResult: false,
|
|
isTransformResponse: true,
|
|
// post请求的时候添加参数到url
|
|
joinParamsToUrl: false,
|
|
// 格式化提交参数时间
|
|
formatDate: true,
|
|
// 消息提示类型
|
|
errorMessageMode: 'message',
|
|
// 接口地址
|
|
apiUrl: globSetting.apiUrl,
|
|
// 接口拼接地址
|
|
urlPrefix: urlPrefix,
|
|
// 是否加入时间戳
|
|
joinTime: true,
|
|
// 忽略重复请求
|
|
ignoreCancelToken: true,
|
|
// 是否携带token
|
|
withToken: true,
|
|
},
|
|
},
|
|
opt || {},
|
|
),
|
|
);
|
|
}
|
|
export const defHttp = createAxios();
|
|
|
|
// other api url
|
|
// export const otherHttp = createAxios({
|
|
// requestOptions: {
|
|
// apiUrl: 'xxx',
|
|
// urlPrefix: 'xxx',
|
|
// },
|
|
// });
|
|
|