vue+axios跨域解决方法

Posted 浅浅时光

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue+axios跨域解决方法相关的知识,希望对你有一定的参考价值。

通过这种方法也可以解决跨域的问题。

 

使用http-proxy-middleware 代理解决(项目使用vue-cli脚手架搭建)

 

例如请求的url:“http://f.apiplus.cn/bj11x5.json

1、打开config/index.js,在proxyTable中添写如下代码:

     

1
2
3
4
5
6
7
8
9
proxyTable: { 
  \'/api\': {  //使用"/api"来代替"http://f.apiplus.c" 
    target: \'http://f.apiplus.cn\', //源地址 
    changeOrigin: true, //改变源 
    pathRewrite: { 
      \'^/api\': \'http://f.apiplus.cn\' //路径重写 
      
  
}

2、使用axios请求数据时直接使用“/api”:

1
2
3
4
getData () { 
 axios.get(\'/api/bj11x5.json\', function (res) { 
   console.log(res) 
 })

通过这中方法去解决跨域,打包部署时还按这种方法会出问题。解决方法如下:

1
2
3
4
5
let serverUrl = \'/api/\'  //本地调试时 
// let serverUrl = \'http://f.apiplus.cn/\'  //打包部署上线时 
export default { 
  dataUrl: serverUrl + \'bj11x5.json\' 
}
调试时定义一个serverUrl来替换我们的“/api”,最后打包时,只需要将“http://www.xxx.com”替换这个“/api”就可以了。
 
原网址:https://www.cnblogs.com/wangyongcun/p/7665687.html

以上是关于vue+axios跨域解决方法的主要内容,如果未能解决你的问题,请参考以下文章

vue axios跨域怎么解决

vue跨域解决方法

vue 解决axios 跨域问题

解决vue axios跨域请求发送两次问题

axios可以解决跨域访问的问题吗

Vue项目解决跨域问题