以下是會造成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 即可