-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
175 lines (171 loc) · 4.77 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/**
* 1. 创建实例
* 2. 设置默认基础属性
* 3. 设置baseURL
* 4. 请求拦截
* 5. header配置
* 6. 请求拦截
* 7. 响应拦截
*/
// request.js
import axios from 'axios' // 引入axios
import Qs from 'qs' // 引入qs模块,用来序列化post类型的数据
import router from '@/router/index'
import { Message } from 'element-ui'
import NProgress from 'nprogress'
import store from '@/store'
// 创建axios实例
const instance = axios.create({
// baseURL: process.env.VUE_APP_PROXY,
baseURL:
process.env.NODE_ENV == 'development'
? process.env.VUE_APP_PROXY
: process.env.VUE_APP_BASE_API,
// baseURL: 'http://192.168.0.164:8888/auth',
// baseURL: 'http://127.0.0.1:3000/auth',
timeout: 180000, // 请求超时时间
// `transformRequest` 允许在向服务器发送前,修改请求数据
transformRequest: [
function (data) {
// 对 data 进行任意转换处理
// data = JSON.stringify(data)
return data
}
],
// `transformResponse` 在传递给 then/catch 前,允许修改响应数据
transformResponse: [
function (data) {
// 对 data 进行任意转换处理
if (typeof data === 'string' && data.startsWith('{')) {
data = JSON.parse(data)
}
return data
}
],
withCredentials: true,
crossDomain: true,
headers: {
'Access-Control-Allow-Origin': '*'
}
})
// 环境的切换
// instance.defaults.baseURL = process.env.VUE_APP_BASE_URL
instance.interceptors.request.use(
function (config) {
// 显示进度条
NProgress.start()
if (config.method === 'get') {
// get请求处理
config.headers = Object.assign(
{
Accept: 'application/json',
'Content-Type': 'application/json; charset=UTF-8'
},
config.headers
)
config.data = Qs.stringify(config.params)
} else {
const contentType = config.headers['Content-Type']
// 根据Content-Type转换data格式
if (contentType) {
if (contentType.includes('multipart')) {
// 类型 'multipart/form-data;'
} else if (contentType.includes('json')) {
// 类型 'application/json;'
// 服务器收到的raw body(原始数据) "{name:"nowThen",age:"18"}"(普通字符串)
config.data = JSON.stringify(config.data)
} else {
// 类型 'application/x-www-form-urlencoded;'
// 服务器收到的raw body(原始数据) name=nowThen&age=18
// config.data = Qs.stringify(config.data)
// 请求头为空 设置默认请求头
config.data = Qs.stringify(config.data)
config.headers = Object.assign(
{
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'
},
config.headers
)
}
} else {
// 请求头为空 设置默认请求头
config.headers = Object.assign(
{
Accept: 'application/json',
'Content-Type': 'application/json; charset=UTF-8'
},
config.headers
)
config.data = JSON.stringify(config.data)
}
}
Object.assign(config.headers, {
Authorization: localStorage.access_token
? `Bearer ${localStorage.access_token}`
: ''
})
config.headers['SameSite'] = `None`
return Promise.resolve(config)
},
function (error) {
// 请求失败处理
Message({
message: error,
type: 'warning'
})
// 对请求错误做处理...
return Promise.reject(error)
}
)
instance.interceptors.response.use(
(res) => {
// 隐藏
NProgress.done()
// 响应成功处理
// sso 登陆状态失效
if (~res.data.action.indexOf('sso') && res.data.code === 1005) {
if (location.pathname != '/sso/login') {
router.replace('/sso/login')
Message({
message: res.data.msg,
type: 'error'
})
}
return Promise.reject(res.data)
}
//权限系统 登陆失效
if (res.data.code === 1005) {
sessionStorage.sessionId = ''
// 请求失败处理
// if (location.hash != '#/login') {
// router.replace('/login')
// Message({
// message: res.data.msg,
// type: 'error'
// })
// }
return Promise.reject(res.data)
}
if (res.data.code === 1) {
return Promise.resolve(res.data)
} else {
// 请求失败处理
Message({
message: res.data.msg,
type: 'warning'
})
return Promise.reject(res.data)
}
},
(err) => {
// 隐藏
NProgress.done()
Message({
type: 'error',
message: '系统错误,请稍后重试'
})
// 请求失败处理
return Promise.reject(err.response)
}
)
export default instance