vue-cli配置axios,並基於axios進行後臺請求函式封裝
阿新 • • 發佈:2018-11-21
文章https://www.cnblogs.com/XHappyness/p/7677153.html已經對axios配置進行了說明,後臺請求時可直接this.$axios直接進行。這裡的缺點是後端請求會散亂在各個元件中,導致複用和維護艱難。
升級:將請求封裝在一個檔案中並加上型別宣告
步驟:
1. npm install axios --save
2. src/common下建server.ts 內容如下
/** * 後臺請求設定 */ import axios from 'axios' // import {Notification} from 'element-ui'View Codeimport { 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()
3. src/types下建server.d.ts,加入server的型別宣告
declare namespace Server { // 本檔案自己用的不用加export export interface loginUser { name: string, psd: string } export interface IServer { login_async(loginUser: loginUser): Promise<string[]>; } }View Code
4. Vue原型新增$server
(1) main.ts中新增
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),內容如下:
/* 補充Vue型別宣告 */ import Vue from 'vue' // 注意要用這一步 declare module 'vue/types/vue' { interface Vue { $server: Server.IServer; } }View Code
5. 可以在任何元件中用this.$server使用封裝的請求方法了,還有有型別檢查和型別提示。