1. 程式人生 > >vue傳送post請求時如何攜帶cookie

vue傳送post請求時如何攜帶cookie

只需要在main.js中寫這三行程式碼即可

import axios from 'axios'

axios.defaults.withCredentials=true;//讓ajax攜帶cookie

Vue.prototype.$axios = axios;

如果cookie攜帶不過去的話,請求響應的時候他會報錯顯示登陸過期的呦!!!

順便說一下原生js攜帶cookie的方法:

            xhrFields: {
               withCredentials: true
            },

加一段上述程式碼即可