溫馨提示×

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

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

vue請(qǐng)求攔截器的配置方法是什么

發(fā)布時(shí)間:2022-01-04 00:24:49 來源:億速云 閱讀:118 作者:柒染 欄目:開發(fā)技術(shù)

這篇文章給大家介紹vue請(qǐng)求攔截器的配置方法是什么,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

vue請(qǐng)求攔截器的配置方法是什么

request.js內(nèi)容

http request請(qǐng)求攔截器和http response服務(wù)器響應(yīng)攔截器配置

// http request 請(qǐng)求攔截器,有token值則配置上token值
import axios from 'axios'
import Promise from 'promise'
import util from './utils';
import store from './../store/index';
const service = axios.create({
    timeout: 60000, // 請(qǐng)求超時(shí)時(shí)間
    headers: {
        // Authorization: Authorization,
        'Content-Type': 'application/json;charset=UTF-8'
    }
});
// http請(qǐng)求攔截器
service.interceptors.request.use(
    config => {
        let tokenExist = util.tokenExist();
        if (tokenExist) {
            // bus.$emit('toggleloading', true)//顯示loading
            //如果token存在
            config.headers['Authorization'] = `Bearer ${util.getToken()}`;
        }
        // Toast.loading({
        //     message: '加載中...',
        //     duration: 0,
        //     forbidClick: true
        // });
        return config;
    },
    error => {
        Promise.reject(error);
    }
)
// http response 服務(wù)器響應(yīng)攔截器,
// 這里攔截401錯(cuò)誤,并重新跳入登頁重新獲取token
service.interceptors.response.use(
    response => {
        if (response.status === 200) {
            //通訊成功
            // Toast.clear();
            /*************
             * response.data.status === 0 錯(cuò)誤
             * response.data.status === 100 成功
             * response.data.status === 401 token過期
             *
             * *************/
            // bus.$emit('toggleloading', false)//隱藏loading
            if (response.data.state === 401) {
                //如果是token過期,跳轉(zhuǎn)至登錄
                Message.error("登錄已過期,請(qǐng)重新登錄!");
                store.commit('SET_TOKEN', '');
                util.goLogin();
            } else if (response.data.state === 0) {
                // Message.error(response.data.message);
                return response.data;
            } else {
                return response.data;
            }
        }
    },
    error => {
        //請(qǐng)求失敗
        // ;
        const response = error.response;
        if (response.status === 401) {
            // Toast.fail(response.data.message);
            Message.error("登錄已過期,請(qǐng)重新登錄!");
            util.goLogin();
        } else if (response.status === 403) {
            $router.push({
                name: '403'
            });
        } else {
            // Toast.fail(response.data.message ? response.data.message : '系統(tǒng)錯(cuò)誤請(qǐng)聯(lián)系管理員');
            // Message.error({
            //     message: '無服務(wù),請(qǐng)聯(lián)系管理員'
            // });
        }
        return Promise.reject(error);
    }
);
export default service;

http.js內(nèi)容

請(qǐng)求數(shù)據(jù)方式

import request from './request';
// import store from './../store/index';
const http = {
    request(config) {
        request(config);
    },
    post(url, data) {
        // if(data instanceof Object){
        // }else{
        //     data = {
        //         ...data
        //     };
        // }
        return request({
            url,
            method: 'post',
            data
        });
    },
    postFile(url, data, contentType) {
        return request({
            url,
            method: 'post',
            data,
            contentType
        });
    },
    get(url, params) {
        return request({
            url,
            method: 'get',
            params
        });
    },
    put(url, data) {
        return request({
            url,
            method: 'put',
            data
        });
    },
    delete(url) {
        return request({
            url,
            method: 'delete'
        });
    },
    download(url, params) {
        return request({
            url,
            method: 'get',
            params,
            responseType: 'blob'
        });
    },
    downloadPost(url, data) {
        return request({
            url,
            method: 'post',
            data,
            responseType: 'blob'
        });
    }
};
export default http;

utils.js內(nèi)容

獲取token,判斷token是否存在

import store from '../store/index';
let util = {
    //獲取token
    getToken() {
        return store.getters.token;
    },
    //判斷token是否存在
    tokenExist() {
        let flag;
        let token = store.getters.token;
        if (token && token !== '') {
            flag = true;
        } else {
            flag = false;
        }
        return token;
    },
}
export default util

vue請(qǐng)求攔截器的配置方法是什么

vuex 倉庫配置

  • vuex 持久化

  • vuex 模板引用

index.js內(nèi)容

import Vue from "vue"
import Vuex from "vuex"
import VuexPersistence from 'vuex-persist';
import db from './db'
Vue.use(Vuex)
//vuex 狀態(tài)持久化
const vuexLocal = new VuexPersistence({
    storage:window.localStorage
})
const store = new Vuex.Store({
    state:{},
    mutations:{},
    actions:{},
    modules:{
        db
    },
    plugins:[vuexLocal.plugin]
})
export default store

 db.js內(nèi)容

const db = {
    state: {
        token: '',
    },
    getters:{
        token:state => state.token
    },
    mutations: {
        // 存儲(chǔ)token
        setToken: (state, value) => {
            state.token = value
        }
    },
    actions: {}
}
export default db

接口封裝

vue請(qǐng)求攔截器的配置方法是什么

import http from "../common/http"
/***********登錄注冊(cè)*************/
// 測(cè)試接口
function text(params){
    return http.get("api/Test/GetList", params)
}
//登錄 
 function Login(params) {
    return http.post("api/Login/Login", params)
}
// 獲取圖形驗(yàn)證碼
function GetValidateCode(params) {
    return http.post("api/Login/GetValidateCode", params)
}
// 獲取手機(jī)驗(yàn)證碼 注意:需要提前人機(jī)驗(yàn)證后調(diào)用 否則有被惡意刷短信的風(fēng)險(xiǎn)
function GetPhoneCode(params) {
    return http.post("api/Login/GetPhoneCode", params)
}
// 注冊(cè) 校驗(yàn)信息
function RegisterUserVerify(params) {
    return http.post("api/Login/RegisterUserVerify", params)
}
// 注冊(cè) 設(shè)置密碼 注冊(cè)用戶信息
function RegisterUserInfo(params) {
    return http.post("api/Login/RegisterUserInfo", params)
}
// 忘記密碼 驗(yàn)證姓名手機(jī)號(hào)
function ResetPasswordVerify(params) {
    return http.post("api/Login/ResetPasswordVerify", params)
}
// 忘記密碼 密碼更新
function ResetPassWord(params) {
    return http.post("api/Login/ResetPassWord", params)
}
export {
    Login,
    text,
    GetPhoneCode,
    RegisterUserVerify,
    GetValidateCode,
    ResetPasswordVerify,
    ResetPassWord,
    RegisterUserInfo
}

關(guān)于vue請(qǐng)求攔截器的配置方法是什么就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向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)容。

vue
AI