溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

vue axios在頁面切換時(shí)中斷請(qǐng)求的示例分析

發(fā)布時(shí)間:2021-08-09 09:43:15 來源:億速云 閱讀:149 作者:小新 欄目:web開發(fā)

這篇文章主要介紹了vue axios在頁面切換時(shí)中斷請(qǐng)求的示例分析,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

如下所示:

Vue.prototype.$ajax=axios; 
const CancelToken = axios.CancelToken;
let cancel;
let cancelAjaxText = '中斷成功';
Vue.prototype.post = function(url,data,loading){
 	var ajax = Vue.prototype.$ajax({
	   	method: 'post',
	   	url:url,
	   	data: data,
	   	cancelToken: new CancelToken(c => { //強(qiáng)行中斷請(qǐng)求要用到的
	   	cancel = c
	   	})
	  }).then(res =>res.data,res=>{ //中斷請(qǐng)求和請(qǐng)求出錯(cuò)都會(huì)走這里,我這里用 cancelAjaxText 來區(qū)別
	  	if(res.message == cancelAjaxText){ 
	  		return {status : false,msg:cancelAjaxText}
	  	}else{
	  		this.$confirm('登錄過時(shí),是否重新登錄', '提示', {
			   	confirmButtonText: '確定',
			   	cancelButtonText: '取消',
			   	type: 'warning'
			  }).then(() => {
			   	window.location.href = Vue.prototype.url_head + '/';
			  }).catch(() => {
			   	  
			  });
	  	}
		 		 	
			})
 	return ajax;
};

接入 axios ,在POST方法里加入 cancelToken 數(shù)據(jù),在上面else中,中斷請(qǐng)求和請(qǐng)求出錯(cuò)都會(huì)走那里,所以用一個(gè)msg來識(shí)別(因?yàn)榻涌诜祷刂幸灿幸粋€(gè)msg,統(tǒng)一一下);

以下是 中斷請(qǐng)求的方法,放在 路由切換的監(jiān)聽 router.beforeEach 中 ,cancel 是中斷的方法,在post 的 cancelToken 里面拿出來的

Vue.prototype.cancelAjax = function(){ //切換頁面強(qiáng)行中斷請(qǐng)求 router.beforeEach中用到 
 if(cancel){ 
  cancel(cancelAjaxText); 
 } 
}
router.beforeEach((to, from, next) => { 
<span > </span>Vue.prototype.cancelAjax()  
 next(); 
});

調(diào)用post

<span >   </span>this.post(this.ajaxUrl + 'getCrTree',{ 
    devAddr : this.changeData.devAddr, 
    innerId : this.changeData.innerId, 
   }).then(ret=>{ 
    if(ret.status){ 
      
    }else{ 
     this.msg(ret.msg); 
    } 
   })

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“vue axios在頁面切換時(shí)中斷請(qǐng)求的示例分析”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(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)容。

AI