vue 解決不能攜帶session問題

weixin_44910915發表於2019-05-22

1 需要配置代理

devServer: {
    host: '127.0.0.1',
    port: 8010,
    proxy: {
      '/api/': {
        target: 'http://127.0.0.1:8080',
        changeOrigin: true,
        pathRewrite:{
                    '/api':'/xxxxxx'
                }
      }
    }

2 修改配置檔案 預設為false不允許攜帶session,改為true

axios.defaults.withCredentials=true;

3 修改axios中的請求即可

this.$axios.post('/api/xx/xxx', {}, {
            headers: {
                "Content-Type": "application/json;charset=utf-8"
            }         
        }).then(function(response) {
            // 這裡是處理正確的回撥          

        }).catch(function(response) {
            // 這裡是處理錯誤的回撥
            console.log(response)
        });

 

相關文章