首頁  >  文章  >  web前端  >  怎麼設定axios的全域請求參數

怎麼設定axios的全域請求參數

php中世界最好的语言
php中世界最好的语言原創
2018-03-28 14:16:204178瀏覽

這次帶給大家怎麼設定axios的全域請求參數,設定axios全域請求參數的注意事項有哪些,下面就是實戰案例,一起來看一下。

應用程式場景:

1,每個請求都會帶上的參數,例如token,時間戳等。

2,對返回的狀態進行判斷,例如token是否過期

程式碼如下:

axios.interceptors.request.use(
		config => {
			var xtoken = getXtoken()
			if(xtoken != null){
				config.headers['X-Token'] = xtoken
			}
			if(config.method=='post'){
				config.data = {
					...config.data,
					_t: Date.parse(new Date())/1000,
				}
			}else if(config.method=='get'){
				config.params = {
					_t: Date.parse(new Date())/1000,
					...config.params
				}
			}
			return config
		},function(error){
			return Promise.reject(error)
		}
	)
axios.interceptors.response.use(function (response) {
	// token 已过期,重定向到登录页面
	if (response.data.code == 4){
		localStorage.clear()
		router.replace({
            path: '/signin',
            query: {redirect: router.currentRoute.fullPath}
          })
	}
	return response
}, function (error) {
	// Do something with response error
	return Promise.reject(error)
})

相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!

推薦閱讀:

vue專案怎麼透過百度的BAE發布

為什麼vue2不能使用axios http要求

以上是怎麼設定axios的全域請求參數的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn