[Vuejs] Vue解决代理设置导致浏览器Session丢失的问题
以下是会造成Session丢失的代理:
proxyTable: {'/proxyApi': {
target: 'http://111.18.149.215:8080/WRSOCXSystem/html/',
changeOrigin: true,
pathRewrite: {
'^/proxyApi': '/'
}
}
},
修改成:
proxyTable: {'/WRSOCXSystem': {
target: 'http://111.18.149.215:8080/WRSOCXSystem/html/',
changeOrigin: true,
pathRewrite: {
'^/WRSOCXSystem': '/'
}
}
},
需要把代理名称 proxyApi 替换成后台请求根目录 WRSOCXSystem 即可
以上是 [Vuejs] Vue解决代理设置导致浏览器Session丢失的问题 的全部内容, 来源链接: utcz.com/z/379642.html