devServer: {
open: true,
port: port,
overlay: {
// 在浏览器不显示编译的警告
warnings: false,
// 在浏览器上显示编译的错误
errors: true
},
proxy: {
[process.env.VUE_APP_BASE_API]: {// 使用环境变量中的值
target: 'http://localhost:8790/’, //服务端接口地址
changeOrigin: true,
pathRewrite: { // 重写真实请求地址
['^' + process.env.VUE_APP_BASE_API]: '/'
}
}
}
}
VUE_APP_BASE_API = '/api/'
import axios from 'axios'
// 创建一个 axios 实例
const service = axios.create({
baseURL: process.env.VUE_APP_BASE_API, // url = base url + request url
timeout: 10000 // request timeout
})
// request interceptor请求拦截器
service.interceptors.request.use(
config => {
// do something before request is sent 在发出请求前
console.log(config)
return config
},
error => {
// do something with request error 处理请求错误
return Promise.reject(error)
}
)
// response interceptor 响应拦截器
service.interceptors.response.use(
response => {
// 返回值 是失败的
if (response.data.isSuccess !== true) {
if (res.data.code === -1) { // 错误码是-1 时
return retryNotErrReq(res.config)
} else {
handleError(res.data.code, res.data.msg)
return Promise.reject(new Error(res.data.msg || 'Error'))
}
} else {
return res
}
},
error => {
return Promise.reject(error)
}
)
export default service
import request from './request'
export function testMessage() {
return request({
url: '/boardPush/testMessage',
method: 'post'
})
}
testMessage().then(msg => {
console.log(msg)
})
其中将http://localhost:8082/api/ 转换成了http://localhost:8790/api/,并且重写了url地址,将其中的/api/替换成了/得到了真实的请求地址