您好,登錄后才能下訂單哦!
在攔截器中設(shè)置全局的token判斷,意味著每次http請(qǐng)求都會(huì)校驗(yàn)token,與后臺(tái)約定好的token過(guò)期返回碼可以自定義跳轉(zhuǎn)路徑;
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){ //與后臺(tái)約定登錄失效的返回碼 parent.location.href ='/login.html'; } return response }) })
以上這篇Vue-resource攔截器判斷token失效跳轉(zhuǎn)的實(shí)例就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。