Skip to content

Commit fcd63cb

Browse files
committed
feat: axios封装
1 parent 4aa2bf4 commit fcd63cb

File tree

6 files changed

+170
-4
lines changed

6 files changed

+170
-4
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules
2-
dist/
2+
dist/
3+
yarn.lock

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
"@emotion/css": "^11.10.5",
5050
"@types/lodash": "^4.14.191",
5151
"antd": "^5.1.4",
52+
"axios": "^1.3.4",
5253
"eslint-plugin-react-hooks": "^4.6.0",
5354
"lodash": "^4.17.21",
5455
"react": "^18.2.0",
@@ -110,4 +111,4 @@
110111
"webpack-dev-server": "^4.11.1",
111112
"webpack-merge": "^5.8.0"
112113
}
113-
}
114+
}

src/api/user/login.ts

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import http from '@/core/http'
2+
3+
export const uploadJsError = (params: UserType.UploadJsErrorReq) =>
4+
http.post<UserType.UploadJsErrorReq, UserType.UploadJsErrorRes>('/login', params)

src/api/user/type.d.ts

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
declare namespace UserType {
2+
type UploadJsErrorReq = {
3+
username: string
4+
password: string
5+
}
6+
7+
type UploadJsErrorRes = {
8+
accessToken: string
9+
}
10+
}

src/core/http.ts

+146
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
/* eslint-disable @typescript-eslint/no-explicit-any */
2+
// index.ts
3+
import { notification } from 'antd'
4+
import type { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios'
5+
import axios from 'axios'
6+
7+
type Result<T> = {
8+
code: number
9+
message: string
10+
result: T
11+
}
12+
13+
// 导出Request,可以用来自定义传递配置来创建实例
14+
export class Request {
15+
// axios 实例
16+
instance: AxiosInstance
17+
// 基础配置,url和超时时间
18+
baseConfig: AxiosRequestConfig = { baseURL: '/api', timeout: 60000 }
19+
20+
constructor(config: AxiosRequestConfig) {
21+
// 使用axios.create创建axios实例,配置为基础配置和我们传递进来的配置
22+
this.instance = axios.create(Object.assign(this.baseConfig, config))
23+
24+
this.instance.interceptors.request.use(this.requestBefore, this.requestReject)
25+
26+
this.instance.interceptors.response.use(this.requestResolove, this.requestReject)
27+
}
28+
29+
/** 请求前处理 - 处理 config */
30+
requestBefore(config: any) {
31+
// 一般会请求拦截里面加token,用于后端的验证
32+
const token = localStorage.getItem('token') as string
33+
if (token) {
34+
config.headers.Authorization = token
35+
}
36+
37+
return config
38+
}
39+
40+
/** 请求成功 - 响应处理 */
41+
requestResolove(res: AxiosResponse) {
42+
console.log(res)
43+
// 直接返回res,当然你也可以只返回res.data
44+
// 系统如果有自定义code也可以在这里处理
45+
return Promise.resolve(res)
46+
}
47+
48+
/** 请求错误 - 响应处理 */
49+
requestReject(err: {
50+
response: {
51+
statusText: string
52+
data: any
53+
status: any
54+
}
55+
}) {
56+
// 这里用来处理http常见错误,进行全局提示
57+
let message = ''
58+
switch (err.response.status) {
59+
case 400:
60+
message = '请求错误(400)'
61+
break
62+
case 401:
63+
message = '未授权,请重新登录(401)'
64+
// 这里可以做清空storage并跳转到登录页的操作
65+
break
66+
case 403:
67+
message = '拒绝访问(403)'
68+
break
69+
case 404:
70+
message = '请求出错(404)'
71+
break
72+
case 408:
73+
message = '请求超时(408)'
74+
break
75+
case 500:
76+
message = '服务器错误(500)'
77+
break
78+
case 501:
79+
message = '服务未实现(501)'
80+
break
81+
case 502:
82+
message = '网络错误(502)'
83+
break
84+
case 503:
85+
message = '服务不可用(503)'
86+
break
87+
case 504:
88+
message = '网络超时(504)'
89+
break
90+
case 505:
91+
message = 'HTTP版本不受支持(505)'
92+
break
93+
default:
94+
message = `连接出错(${err.response.status})!`
95+
}
96+
// 这里错误消息可以使用全局弹框展示出来
97+
// 比如element plus 可以使用 ElMessage
98+
notification.open({
99+
message: message,
100+
key: 'error',
101+
type: 'error',
102+
description: '请检查网络或联系管理员!',
103+
})
104+
// 这里是AxiosError类型,所以一般我们只reject我们需要的响应即可
105+
return Promise.reject(err?.response.statusText)
106+
}
107+
108+
/** 定义请求方法 */
109+
public request(config: AxiosRequestConfig): Promise<AxiosResponse> {
110+
return this.instance.request(config)
111+
}
112+
113+
/** Get 请求 */
114+
public get<R = any>(url: string, config?: AxiosRequestConfig): Promise<AxiosResponse<Result<R>>> {
115+
return this.instance.get(url, config)
116+
}
117+
118+
/** Post 请求 */
119+
public post<P = any, R = any>(
120+
url: string,
121+
data?: P,
122+
config?: AxiosRequestConfig,
123+
): Promise<AxiosResponse<Result<R>>> {
124+
return this.instance.post(url, data, config)
125+
}
126+
127+
/** Put 请求 */
128+
public put<P = any, R = any>(
129+
url: string,
130+
data?: P,
131+
config?: AxiosRequestConfig,
132+
): Promise<AxiosResponse<Result<R>>> {
133+
return this.instance.put(url, data, config)
134+
}
135+
136+
/** delete 请求 */
137+
public delete<R = any>(
138+
url: string,
139+
config?: AxiosRequestConfig,
140+
): Promise<AxiosResponse<Result<R>>> {
141+
return this.instance.delete(url, config)
142+
}
143+
}
144+
145+
// 默认导出Request实例
146+
export default new Request({})

src/pages/login/components/AccountForm/index.tsx

+6-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,13 @@ const AccountForm: React.FC = () => {
2626
}
2727
})
2828

29-
const handleOnFinish = (values: any) => {
29+
const handleOnFinish = async (values: any) => {
3030
console.log('Success:', values)
31-
navigate('/dashboard/dataVisualize')
31+
try {
32+
navigate('/dashboard/dataVisualize')
33+
} catch (err) {
34+
console.log(err)
35+
}
3236
}
3337

3438
const handleOnFinishFailed = (errorInfo: any) => {

0 commit comments

Comments
 (0)