axios|axios 配置代理
【axios|axios 配置代理】1.在config 下的index.js内配置
proxyTable: {
'/login': {
target: '地址',
changeOrigin: true,
pathRewrite: {
'/login': ''
}
}
},
2.在请求的时候
this.$axios({
method: 'get',
baseURL: '/login',
url: 'sys/Login/login'
}).then(res => {
console.log(res);
console.log(JSON.stringify(res.data.data));
sessionStorage.setItem('res_data', res.data.data);
}).catch(
err => {
console.log(err);
}
);
推荐阅读
- vue-cli|vue-cli 3.x vue.config.js 配置
- 2020-04-07vue中Axios的封装和API接口的管理
- 事件代理
- 从战略性的角度可以配置股票
- 设计模式-代理模式-Proxy
- 接口|axios接口报错-参数类型错误解决
- 缓存有关的配置和属性
- Spring|Spring Boot 自动配置的原理、核心注解以及利用自动配置实现了自定义 Starter 组件
- java静态代理模式
- Vagrant|Vagrant (三) - 网络配置