[Vuejs] Vue解決代理設置致使瀏覽器Session丟失的問題

如下是會形成Session丟失的代理:html

proxyTable: {
      '/proxyApi': {
        target: 'http://111.18.149.215:8080/WRSOCXSystem/html/',
        changeOrigin: true,
        pathRewrite: {
          '^/proxyApi': '/'
        }
      }
    },

修改爲:spa

proxyTable: {
      '/WRSOCXSystem': {
        target: 'http://111.18.149.215:8080/WRSOCXSystem/html/',
        changeOrigin: true,
        pathRewrite: {
          '^/WRSOCXSystem': '/'
        }
      }
    },

須要把代理名稱  proxyApi 替換成後臺請求根目錄 WRSOCXSystem 便可代理

相關文章
相關標籤/搜索