码迷,mamicode.com
首页 > Web开发 > 详细

[Vuejs] Vue解决代理设置导致浏览器Session丢失的问题

时间:2019-05-23 23:00:57      阅读:628      评论:0      收藏:0      [点我收藏+]

标签:tab   ocx   ack   vue   table   span   api   get   问题   

以下是会造成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丢失的问题

标签:tab   ocx   ack   vue   table   span   api   get   问题   

原文地址:https://www.cnblogs.com/frost-yen/p/10915020.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!