這次帶給大家攔截器判斷token失效跳轉後的操作,攔截器判斷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 }) })
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
以上是攔截者判斷token失效跳轉後的操作的詳細內容。更多資訊請關注PHP中文網其他相關文章!