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