Vue解决跨域问题

  • 在config文件夹下面的index.js里面进行修改 这个是3*版本其他版本不一定是这个文件夹
module.exports = {
  dev: {

    // Paths
    assetsSubDirectory: 'static',
    assetsPublicPath: '/',
    proxyTable: {
      '/api': {// /api替换http://127.0.0.1:3000
        target: 'http://127.0.0.1:3000',//要访问的地址
           changeOrigin: true, //改变源 
        pathRewrite: {
          '^/api': ''
        }
      },
      '/users/*':{
        target: 'http://127.0.0.1:3000',
      }
    },
    }

}

哪个看懂懂看那个

    proxyTable: { 
  '/api': {  //使用"/api"来代替"http://f.apiplus.c" 
    target: 'http://f.apiplus.cn', //源地址 
    changeOrigin: true, //改变源 
    pathRewrite: { 
      '^/api': 'http://f.apiplus.cn' //路径重写 
      } 
  } 

你可能感兴趣的:(前端框架)