本文主要為大家帶來一個Vue-resource攔截器判斷token失效跳轉的實例。小編覺得蠻不錯的,現在就分享給大家,也給大家做個參考。一起跟著小編過來看看吧,希望能幫助大家。
在攔截器中設定全域的token判斷,意味著每次http請求都會校驗token,與後台約定好的token過期回傳碼可以自訂跳轉路徑;
var token = window.localStorage.getItem("token"); Vue.http.interceptors.push(function(request, next) { request.headers.set('token', token); //setting request.headers next(function(response){ if(response.body.code===401){ //与后台约定登录失效的返回码 parent.location.href ='/login.html'; } return response }) })
相關推薦:
以上是Vue-resource攔截器判斷token失效跳轉詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!