vue-cli配置axios,並基於axios進行後臺請求函數封裝

文章http://www.javashuo.com/article/p-kvsbitka-gs.html已經對axios配置進行了說明,後臺請求時可直接this.$axios直接進行。這裏的缺點是後端請求會散亂在各個組件中,致使複用和維護艱難。html

升級:將請求封裝在一個文件中並加上類型聲明vue

步驟:ios

 

1. npm install axios --savegit

 

2. src/common下建server.ts 內容以下github

/**
 * 後臺請求設置
 */
import axios from 'axios'
// import {Notification} from 'element-ui'
import { serverUrl } from './configByEnv.js'

axios.defaults.withCredentials = true;
axios.defaults.baseURL = serverUrl;

axios.interceptors.request.use(function (config) {
    return config;
}, function (error) {
    return Promise.reject(error)
})

axios.interceptors.response.use(function (response) {
    return response.data;
}, function (error) {
    if (error.response.status === 401) {
        alert(401);
        // Notification({
        //   title: '權限無效',
        //   message: '您的用戶信息已經失效, 請從新登陸',
        //   type: 'warning',
        //   offset: 48
        // });
        // window.location.href = '/#/login'
    } else {
        alert('請求錯誤');
        // Notification({
        //   title: '請求錯誤',
        //   message: `${error.response.status} \n ${error.config.url}`,
        //   type: 'error',
        //   offset: 48,
        // })
    }
    return Promise.reject(error)
})

/**
 * 後臺請求函數
 */
class Server implements Server.IServer {
    // 全部請求函數寫在這裏
    login_async(curSlnId: Server.loginUser): Promise<string[]> {
        return axios.get(`/login/${curSlnId}`).then((res: any) => res)
    }
}

export default new Server()    
View Code

 

3. src/types下建server.d.ts,加入server的類型聲明typescript

declare namespace Server {
    // 本文件本身用的不用加export
    export interface loginUser {
        name: string,
        psd: string
    }
    export interface IServer {
        login_async(loginUser: loginUser): Promise<string[]>;
    }
}
View Code

 

4. Vue原型添加$servernpm

(1) main.ts中添加element-ui

import server from './common/server';
Vue.prototype.$server = server;

 (2)src/types下建vue.d.ts,也就是聲明 Vue 插件補充的類型(https://minikiller.github.io/v2/guide/typescript.html#%E5%A3%B0%E6%98%8E-Vue-%E6%8F%92%E4%BB%B6%E8%A1%A5%E5%85%85%E7%9A%84%E7%B1%BB%E5%9E%8B),內容以下:axios

/* 補充Vue類型聲明 */
import Vue from 'vue'  // 注意要用這一步
declare module 'vue/types/vue' {
    interface Vue {
        $server: Server.IServer;
    }
}
View Code

 

5. 能夠在任何組件中用this.$server使用封裝的請求方法了,還有有類型檢查和類型提示。後端

相關文章
相關標籤/搜索