解决vue的跨域问题

  • Post author:
  • Post category:vue


解决跨域在vue.config.js的文件中,添加devServer中的proxy属性

如果项目中仅仅修改一个端口号

devServer:{
   proxy:"http://localhost:5000"
 }

如果一个项目中产生多个跨域

devServer:{
    proxy:{
      "/api":{
        target:"http://localhost:5000",
        pathRewrite:{'^/api':''}
      },
      "/foo":{
        target:"http://localhost:5001",
        pathRewrite:{'^/foo':''}
  
      }
    }
  }



版权声明:本文为weixin_44404444原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。