vue+axios 前端實現的常用攔截

來源:互聯網
上載者:User

標籤:timeout   switch   message   inter   import   before   請求   mes   bsp   

一、路由攔截使用
router.beforeEach((to, from, next) => {    if (to.meta.requireAuth) {  // 判斷該路由是否需要登入許可權        if (store.state.token) {  // 通過vuex state擷取當前的token是否存在            next();        }        else {            next({                path: ‘/login‘,                query: {redirect: to.fullPath}  // 將跳轉的路由path作為參數,登入成功後跳轉到該路由            })        }    }    else {        next();    }})
二、攔截器使用

要想統一處理所有http請求和響應,就得用上 axios 的攔截器。通過配置http response inteceptor,當後端介面返回401 Unauthorized(未授權),讓使用者重新登入。

// http request 攔截器axios.interceptors.request.use(    config => {        if (store.state.token) {  // 判斷是否存在token,如果存在的話,則每個http header都加上token            config.headers.Authorization = `token ${store.state.token}`;        }        return config;    },    err => {        return Promise.reject(err);    }); // http response 攔截器axios.interceptors.response.use(    response => {        return response;    },    error => {        if (error.response) {            switch (error.response.status) {                case 401:                    // 返回 401 清除token資訊並跳轉到登入頁面                    store.commit(types.LOGOUT);                    router.replace({                        path: ‘login‘,                        query: {redirect: router.currentRoute.fullPath}                    })            }        }        return Promise.reject(error.response.data)   // 返回介面返回的錯誤資訊    });
三、執行個體
/** * http配置 */// 引入axios以及element ui中的loading和message組件import axios from ‘axios‘import { Loading, Message } from ‘element-ui‘// 逾時時間axios.defaults.timeout = 5000// http請求攔截器var loadinginstaceaxios.interceptors.request.use(config => { // element ui Loading方法 loadinginstace = Loading.service({ fullscreen: true }) return config}, error => { loadinginstace.close() Message.error({ message: ‘載入逾時‘ }) return Promise.reject(error)})// http響應攔截器axios.interceptors.response.use(data => {// 響應成功關閉loading loadinginstace.close() return data}, error => { loadinginstace.close() Message.error({ message: ‘載入失敗‘ }) return Promise.reject(error)}) export default axios

 如果你是使用了vux,那麼在main.js這樣使用:

Vue.prototype.$http.interceptors.response.use()

 參考地址:vue中axios解決跨域問題和攔截器使用

vue+axios 前端實現的常用攔截

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.