proxyTable: {
'/api':{
target:'http://www.api.com/api',
changeOrigin:true,
pathRewrite:{
'^/api':''
}
}
},
在config/index.js里配置里这个代理,页面发请求依然是请求到本地的。要怎么正确配置呢?
发的请求代码如下
this.$http.get('/api/menu/get_list').then(function(data){
console.log(data)
})
这样子发的请求仍然是http://localhost:8080/api/men...
其实已经生效了。
代理本质上就是请求本地server转发到代理server