1. 程式人生 > >vue-cli axios跨域

vue-cli axios跨域

關於vue-cli使用axios的跨域問題
我卡了半個小時,就是很多細節撒花姑娘沒有處理好造成的
下面貼程式碼
proxyTable: {
‘/index’:{
target:’ ‘,
changeOrigin:true,
pathRewrite:{
‘^/index’: ‘/index’
}
}
},
在config裡的index.js裡找到proxyTable配置
target寫上你的api域名地址
changeOrigin等於true是允許跨域
下面的pathRewrite是替換的
this.$http({
method:‘get’,
url:’’,
}).then(function(res){
console.log(res.data.data)
}).catch(function(err){
console.log(err)
})
url只要寫上api就可以了
希望可以幫助到大家!有什麼看了有深入理解的大佬們,看到還請指定一二