1、创建axios实例
const http = axios.create({
// baseURL: 'http://localhost:8085/',
timeout: 1000 * 30, // 请求超时
withCredentials: true, // true:在跨域请求时,会携带用户凭证 false:在跨域请求时,不会携带用户凭证;返回的 response 里也会忽略 cookie
headers: {
'Content-Type': 'application/json; charset=utf-8'
}
})
2、设置请求拦截器
http.interceptors.request.use(config => {
config.headers['Authorization'] = Vue.cookie.get('Authorization') // 请求头带上token
return config
}, error => {
return Promise.reject(error)
})
3、设置响应拦截器
处理响应的状态码
http.interceptors.response.use(response => {
return response
}, error => {
switch (error.response.status) {
case 400:
Message({
message: error.response.data,
type: 'error',
duration: 1500,
customClass: 'element-error-message-zindex'
})
break
case 401:
clearLoginInfo()
router.push({ name: 'login' })
break
case 405:
Message({
message: 'http请求方式有误',
type: 'error',
duration: 1500,
customClass: 'element-error-message-zindex'
})
break
case 500:
Message({
message: '服务器出了点小差,请稍后再试',
type: 'error',
duration: 1500,
customClass: 'element-error-message-zindex'
})
break
case 501:
Message({
message: '服务器不支持当前请求所需要的某个功能',
type: 'error',
duration: 1500,
customClass: 'element-error-message-zindex'
})
break
}
return Promise.reject(error)
})
4、请求路径地址处理
/**
* 请求地址处理
* @param {*} actionName action方法名称
*/
http.adornUrl = (actionName) => {
// 开启代理, 接口前缀统一使用[/proxyApi/]前缀做代理拦截!
return '/proxyApi' + actionName
}
关于路径代理:
proxyTable: {
'/proxyApi': {
target: 'http://localhost:8085/',
changeOrigin: true,
pathRewrite: {
'^/proxyApi': '/'
}
}
},
5、get请求参数处理
/**
* get请求参数处理
* @param {*} params 参数对象
* @param {*} openDefultParams 是否开启默认参数?
*/
http.adornParams = (params = {}, openDefultParams = true) => {
var defaults = {
't': new Date().getTime()
}
return openDefultParams ? merge(defaults, params) : params
}
6、post请求数据处理
/**
* post请求数据处理
* @param {*} data 数据对象
* @param {*} openDefultdata 是否开启默认数据?
* @param {*} contentType 数据格式
* json: 'application/json; charset=utf-8'
* form: 'application/x-www-form-urlencoded; charset=utf-8'
*/
http.adornData = (data = {}, openDefultdata = true, contentType = 'json') => {
var defaults = {
't': new Date().getTime()
}
data = openDefultdata ? merge(defaults, data) : data
return contentType === 'json' ? JSON.stringify(data) : qs.stringify(data)
}
|