中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用vue+axios 攔截器實現統一token的方法

發布時間:2020-11-03 19:12:36 來源:億速云 閱讀:167 作者:Leah 欄目:開發技術

本篇文章為大家展示了使用vue+axios 攔截器實現統一token的方法,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

代碼如下:

const instance = axios.create({
 baseURL: 'http://www.laravel5.5.com/api/',
 timeout: 10000,
});

//POST傳參序列化(添加請求攔截器)
// 在發送請求之前做某件事
instance.interceptors.request.use(config => {
//  // 設置以 form 表單的形式提交參數,如果以 JSON 的形式提交表單,可忽略
 if(config.method === 'post'){
  // JSON 轉換為 FormData
  const formData = new FormData();
  Object.keys(config.data).forEach(key => formData.append(key, config.data[key]))
  config.data = formData
 }
 // 下面會說在什么時候存儲 token
 if (localStorage.token) {
  config.headers['Authorization'] = localStorage.token;
  config.headers['Accept'] = 'application/json';
  // config.headers['Content-Type'] = 'application/x-www-form-urlencoded;charset=UTF-8';
  // store.dispatch('logined', localStorage.token)
 }
 return config
},error =>{
 alert("錯誤的傳參", 'fail')
 return Promise.reject(error)
})

// 自定義的 axios 響應攔截器
instance.interceptors.response.use((response) => {
 // 判斷一下響應中是否有 token,如果有就直接使用此 token 替換掉本地的 token。你可以根據你的業務需求自己編寫更新 token 的邏輯
 var token = response.headers.authorization;

 if (token) {
  // 如果 header 中存在 token,那么觸發 refreshToken 方法,替換本地的 token
  axios.defaults.headers.common['Authorization'] = token;
 }
 return response
}, (error) => {
 if (error.response) {
  switch (error.response.status) {
   case 401:
    // 這里寫清除token的代碼
    router.replace({
     path: 'login',
     query: {redirect: router.currentRoute.fullPath}//登錄成功后跳入瀏覽的當前頁面
    })
  }
 }
 return Promise.reject(error)
});
Vue.http = Vue.prototype.$http = instance;

簡單的分享一下自己的代碼;這是本人結合JWT-Auth定制的axios攔截,

1.根據用戶是否登陸,查看用戶請求頭是否攜帶token

2.根據判斷后臺響應值headers是否攜帶Authorization值,如果存在,刷新Token

3.如果用戶授權失敗,直接跳至登陸頁面

補充知識:vue封裝axios(統一添加請求參數,如token useId等)

main.js中:

import axios from 'axios'
import VueAxios from 'vue-axios'
import qs from 'qs';
Vue.prototype.$qs = qs;
 
//請求的攔截器
/*axios.defaults.transformRequest=[function(data){
 return qs.stringify(data);
}];*/
axios.interceptors.request.use(function(config){
 const cl_u_id=localStorage.getItem('cl_u_id');
 const appId=localStorage.getItem('appId');
 
 if(config.headers['Content-Type'] == 'multipart/form-data'){
  config.data.set('cl_u_id',cl_u_id);
  config.data.set('appId',appId);
  return config;
 }
 //判斷請求的類型:如果是post請求就把默認參數拼到data里面;如果是get請求就拼到params里面
 if(config.method==='post'){
  config.data=qs.stringify({
   cl_u_id:cl_u_id,
   appId:appId,
   ...config.data
  })
 }else if(config.method==='get'){
  config.params={
   cl_u_id:cl_u_id,
   appId:appId,
   ...config.params
  }
 }
 return config;
},function(error){
 return Promise.reject(error);
}) 
Vue.use(VueAxios, axios)

使用vue+axios 攔截器實現統一token的方法

上述內容就是使用vue+axios 攔截器實現統一token的方法,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

普格县| 游戏| 治多县| 新泰市| 科尔| 阳西县| 桐柏县| 古蔺县| 南雄市| 南岸区| 南陵县| 石城县| 穆棱市| 崇礼县| 略阳县| 宁阳县| 韩城市| 蓬莱市| 和田市| 台安县| 江达县| 娱乐| 龙南县| 新津县| 高台县| 永清县| 平湖市| 河南省| 肇庆市| 清新县| 兰考县| 余姚市| 巴彦淖尔市| 凤阳县| 会昌县| 临武县| 金坛市| 达尔| 峡江县| 乃东县| 政和县|