1
2
3
4
// 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';
Vben
authored
4 years ago
5
6
import type { RequestOptions, Result } from './types';
import type { AxiosTransform, CreateAxiosOptions } from './axiosTransform';
7
Vben
authored
4 years ago
8
import { VAxios } from './Axios';
9
10
import { checkStatus } from './checkStatus';
vben
authored
5 years ago
11
import { useGlobSetting } from '/@/hooks/setting';
12
13
14
15
16
import { useMessage } from '/@/hooks/web/useMessage';
import { RequestEnum, ResultEnum, ContentTypeEnum } from '/@/enums/httpEnum';
import { isString } from '/@/utils/is';
Vben
authored
4 years ago
17
import { getToken } from '/@/utils/auth';
18
import { setObjToUrlParams, deepMerge } from '/@/utils';
Vben
authored
4 years ago
19
20
import { useErrorLogStoreWithOut } from '/@/store/modules/errorLog';
21
//import { errorResult } from './const';
vben
authored
5 years ago
22
import { useI18n } from '/@/hooks/web/useI18n';
vben
authored
5 years ago
23
import { createNow, formatRequestDate } from './helper';
24
vben
authored
5 years ago
25
const globSetting = useGlobSetting();
26
27
28
29
30
31
32
33
const prefix = globSetting.urlPrefix;
const { createMessage, createErrorModal } = useMessage();
/**
* @description: 数据处理,方便区分多种处理方式
*/
const transform: AxiosTransform = {
/**
34
* @description: 处理请求数据。如果数据不是预期格式,可直接抛出错误
35
*/
Vben
authored
4 years ago
36
transformRequestHook: (res: AxiosResponse<Result>, options: RequestOptions) => {
vben
authored
5 years ago
37
const { t } = useI18n();
38
39
40
41
42
const { isTransformRequestResult, isReturnNativeResponse } = options;
// 是否返回原生响应头 比如:需要获取响应头时使用该属性
if (isReturnNativeResponse) {
return res;
}
43
44
45
46
47
48
49
50
51
52
// 不进行任何处理,直接返回
// 用于页面代码可能需要直接获取code,data,message这些信息时开启
if (!isTransformRequestResult) {
return res.data;
}
// 错误的时候返回
const { data } = res;
if (!data) {
// return '[HTTP] Request has no return value';
53
54
throw new Error(t('sys.api.apiRequestFailed'));
//return errorResult;
55
56
57
58
59
60
61
62
63
64
}
// 这里 code,result,message为 后台统一的字段,需要在 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') {
vben
authored
5 years ago
65
createErrorModal({ title: t('sys.api.errorTip'), content: message });
vben
authored
5 years ago
66
} else if (options.errorMessageMode === 'message') {
67
68
69
createMessage.error(message);
}
}
70
71
throw new Error(message);
//return errorResult;
72
73
74
75
}
// 接口请求成功,直接返回结果
if (code === ResultEnum.SUCCESS) {
nebv
authored
5 years ago
76
return result;
77
78
79
80
81
}
// 接口请求错误,统一提示错误信息
if (code === ResultEnum.ERROR) {
if (message) {
createMessage.error(data.message);
82
throw new Error(message);
83
} else {
vben
authored
5 years ago
84
const msg = t('sys.api.errorMessage');
85
createMessage.error(msg);
86
throw new Error(msg);
87
}
88
//return errorResult;
89
90
91
}
// 登录超时
if (code === ResultEnum.TIMEOUT) {
vben
authored
5 years ago
92
const timeoutMsg = t('sys.api.timeoutMessage');
93
createErrorModal({
vben
authored
5 years ago
94
title: t('sys.api.operationFailed'),
95
96
content: timeoutMsg,
});
97
98
throw new Error(timeoutMsg);
//return errorResult;
99
}
100
101
throw new Error(t('sys.api.apiRequestFailed'));
//return errorResult;
102
103
104
105
},
// 请求之前处理config
beforeRequestHook: (config, options) => {
vben
authored
5 years ago
106
const { apiUrl, joinPrefix, joinParamsToUrl, formatDate, joinTime = true } = options;
107
108
109
110
111
112
113
114
if (joinPrefix) {
config.url = `${prefix}${config.url}`;
}
if (apiUrl && isString(apiUrl)) {
config.url = `${apiUrl}${config.url}`;
}
vben
authored
5 years ago
115
const params = config.params || {};
vben
authored
5 years ago
116
if (config.method?.toUpperCase() === RequestEnum.GET) {
vben
authored
5 years ago
117
if (!isString(params)) {
vben
authored
5 years ago
118
119
// 给 get 请求加上时间戳参数,避免从缓存中拿数据。
config.params = Object.assign(params || {}, createNow(joinTime, false));
120
121
} else {
// 兼容restful风格
vben
authored
5 years ago
122
config.url = config.url + params + `${createNow(joinTime, true)}`;
vben
authored
5 years ago
123
config.params = undefined;
124
125
}
} else {
vben
authored
5 years ago
126
127
128
if (!isString(params)) {
formatDate && formatRequestDate(params);
config.data = params;
vben
authored
5 years ago
129
config.params = undefined;
130
131
132
133
134
if (joinParamsToUrl) {
config.url = setObjToUrlParams(config.url as string, config.data);
}
} else {
// 兼容restful风格
vben
authored
5 years ago
135
config.url = config.url + params;
vben
authored
5 years ago
136
config.params = undefined;
137
138
139
140
141
142
143
144
145
146
}
}
return config;
},
/**
* @description: 请求拦截器处理
*/
requestInterceptors: (config) => {
// 请求之前处理config
Vben
authored
4 years ago
147
const token = getToken();
148
149
150
151
152
153
154
155
156
157
158
if (token) {
// jwt token
config.headers.Authorization = token;
}
return config;
},
/**
* @description: 响应错误处理
*/
responseInterceptorsCatch: (error: any) => {
vben
authored
5 years ago
159
const { t } = useI18n();
Vben
authored
4 years ago
160
161
const errorLogStore = useErrorLogStoreWithOut();
errorLogStore.addAjaxErrorInfo(error);
162
const { response, code, message } = error || {};
vben
authored
5 years ago
163
164
const msg: string = response?.data?.error?.message ?? '';
const err: string = error?.toString?.() ?? '';
165
166
try {
if (code === 'ECONNABORTED' && message.indexOf('timeout') !== -1) {
vben
authored
5 years ago
167
createMessage.error(t('sys.api.apiTimeoutMessage'));
168
}
vben
authored
5 years ago
169
if (err?.includes('Network Error')) {
170
createErrorModal({
vben
authored
5 years ago
171
172
title: t('sys.api.networkException'),
content: t('sys.api.networkExceptionMsg'),
173
174
175
176
177
});
}
} catch (error) {
throw new Error(error);
}
vben
authored
5 years ago
178
checkStatus(error?.response?.status, msg);
vben
authored
5 years ago
179
return Promise.reject(error);
180
181
182
183
184
185
186
187
188
189
190
191
192
},
};
function createAxios(opt?: Partial<CreateAxiosOptions>) {
return new VAxios(
deepMerge(
{
timeout: 10 * 1000,
// 基础接口地址
// baseURL: globSetting.apiUrl,
// 接口可能会有通用的地址部分,可以统一抽取出来
prefixUrl: prefix,
headers: { 'Content-Type': ContentTypeEnum.JSON },
vben
authored
5 years ago
193
194
// 如果是form-data格式
// headers: { 'Content-Type': ContentTypeEnum.FORM_URLENCODED },
195
196
197
198
199
200
// 数据处理方式
transform,
// 配置项,下面的选项都可以在独立的接口请求中覆盖
requestOptions: {
// 默认将prefix 添加到url
joinPrefix: true,
201
202
// 是否返回原生响应头 比如:需要获取响应头时使用该属性
isReturnNativeResponse: false,
203
204
205
206
207
208
209
// 需要对返回数据进行处理
isTransformRequestResult: true,
// post请求的时候添加参数到url
joinParamsToUrl: false,
// 格式化提交参数时间
formatDate: true,
// 消息提示类型
vben
authored
5 years ago
210
errorMessageMode: 'message',
211
212
// 接口地址
apiUrl: globSetting.apiUrl,
vben
authored
5 years ago
213
214
// 是否加入时间戳
joinTime: true,
Vben
authored
4 years ago
215
216
// 忽略重复请求
ignoreCancelToken: true,
217
218
219
220
221
222
223
224
225
226
227
228
229
230
},
},
opt || {}
)
);
}
export const defHttp = createAxios();
// other api url
// export const otherHttp = createAxios({
// requestOptions: {
// apiUrl: 'xxx',
// },
// });