likes
comments
collection
share

解决VUE跨域问题

作者站长头像
站长
· 阅读数 264

vue项目根目录新建vue.config.js文件:

module.exports = {
  devServer: {
    proxy: {
      '/api': {
        target: 'http://localhost:8000',
        changeOrigin: true,
        pathRewrite: {
          '^/api': ''
        }
      }
    }
  }
}

其他接口调用

//加上/api 地址指向到 http://localhost:8000、system/slider/list/

/api/system/slider/list/