2配置axios请求

1.响应拦截器

封装了一个处理axios响应的函数

import { Notification } from 'element-ui' //提示后端接口
function handleReponse(response) {
  switch (parseInt(response.data.code)) {
    case 0:
      break
    case 404:
      Notification.error({
        title: 'error',
        message: '后端接口网址未找到, 错误代码404',
        duration: 5000,
      })
      break
    default:
      Notification({
        title: 'error',
        message: '未知错误,错误代码:' + response.data.code,
        duration: 5000,
      })
  }
  return response
}

在获取到响应后,调用对应的处理函数

解决请求跨域问题

1在vue.config.js中配置代理

2在.env.development中配置代理服务器地址

VUE_APP_Proxy=http://localhost:8080/api

3在request.js文件中配置axios请求地址

Last updated

Was this helpful?