我将Laravel与Vue和Axios结合使用(用于ajax调用)。 我需要在ajax调用之前检查会话是否仍然有效,以保存内容或访问私有页面。
我尝试interceptors.push
来检查响应状态,就像他们在这里说的那样:
Check Laravel login session,但我总是得到undefined
。我尝试过:
Vue.http.interceptors.push
this.http.interceptors.push
this.$http.interceptors.push
this.http.interceptors.push
然后我读到我应该改用axios,但我不知道如何使用。 您是否有更好的解决方案来解决此问题?