新手基于axios 的二次封装

《1》简单封装。

  • 在src文件夹下新建api文件夹,新建request.js
c 复制代码
const _errno = 1
import axios from 'axios'

export function get(url) {
    return function (params) {
        return axios.get(url, {
            params
        }).then((res) => {
            const { errno, data } =res.data
            if(errno = _errno ){ //对数据进行判断 是否正确
                return data
            }                       
        }).catch(() => {

        })
    }
}
  • 在api文件夹新建index.js
c 复制代码
import { get } from './request.js'

const getNews = get('/api/v1/news')

export {
    getNews
}
  • 使用
c 复制代码
import { getNews } from 'api'

methods:{

    getData(){
        getNews().then((res) => {

        })
    }

《2》符合更多场景的封装

对request拦截器、response拦截器、统一的错误处理、统一做了超时处理、baseURL等统一进行了封装

新建api文件夹,新建request.js

c 复制代码
import axios from 'axios'

import { MessageBox, Message } from 'element-ui'

import store from '@/store'

import { getToken } from '@/utils/auth'



// create an axios instance

const service = axios.create({

  baseURL: process.env.VUE_APP_BASE_API, // url = base url + request url

  // withCredentials: true, // send cookies when cross-domain requests

  timeout: 5000 // request timeout

})



// request interceptor

service.interceptors.request.use(

  config => {

    // do something before request is sent

    if (store.getters.token) {

      // let each request carry token

      // ['X-Token'] is a custom headers key

      // please modify it according to the actual situation

      config.headers['X-Token'] = getToken()

    }
    return config
  },

  error => {

    // do something with request error

    console.log(error) // for debug

    return Promise.reject(error)

  }

)

// response interceptor

service.interceptors.response.use(

  /**

   * If you want to get http information such as headers or status

   * Please return  response => response

  */

  /**

   * Determine the request status by custom code

   * Here is just an example

   * You can also judge the status by HTTP Status Code

   */

  response => {

    const res = response.data

    // if the custom code is not 20000, it is judged as an error.

    if (res.code !== 20000) {

      Message({

        message: res.message || 'Error',

        type: 'error',

        duration: 5 * 1000

      })

      // 50008: Illegal token; 50012: Other clients logged in; 50014: Token expired;

      if (res.code === 50008 || res.code === 50012 || res.code === 50014) {

        // to re-login

        MessageBox.confirm('You have been logged out, you can cancel to stay on this page, or log in again', 'Confirm logout', {

          confirmButtonText: 'Re-Login',

          cancelButtonText: 'Cancel',

          type: 'warning'

        }).then(() => {

          store.dispatch('user/resetToken').then(() => {

            location.reload()

          })

        })

      }

      return Promise.reject(new Error(res.message || 'Error'))

    } else {

      return res

    }

  },

  error => {

    console.log('err' + error) // for debug

    Message({

      message: error.message,

      type: 'error',

      duration: 5 * 1000

    })

    return Promise.reject(error)

  }

)

export default service

新建index.js

c 复制代码
import request from '@/utils/request'



export function fetchList(query) {

  return request({

    url: '/vue-element-admin/article/list', // 可进行地址的拼接

    method: 'get',

    params: query,

    baseURL: 'xxxx'  // 可进行覆盖url

  })

}
相关推荐
mct12311 分钟前
c++ iconv 字符utf-8转换gb2312失败
开发语言·c++
gis开发之家18 分钟前
《Vue3 从入门到大神37篇》Vue3 源码详解(七):watch 与 watchEffect 源码对比——副作用是如何被追踪的?
javascript·前端框架·vue3·vue3源码
bloglin999991 小时前
langchain 和 langgraph 和 react
javascript·react.js·langchain
触底反弹2 小时前
🚀 删了数据刷新又回来?3 组件 × 4 回调 × 3 坑讲透 React 父子通信
前端·javascript·react.js
Marst Code2 小时前
Python 3.9 已停止维护!从 3.9 到 3.14 全版本深度对比,生产环境该选哪个?
开发语言·python
ZJH__GO2 小时前
网络编程v2--多客户端互通
java·运维·服务器·开发语言·计算机网络
万岳科技系统开发2 小时前
智慧医院小程序开发推动医疗服务流程全面线上化
大数据·开发语言·人工智能
一只小灿灿2 小时前
C++ 修饰符全面详解
开发语言·c++
马里马里奥-3 小时前
从零搭建AI Agent工具链的技术文章大纲
开发语言·qt
不做Java程序猿好多年3 小时前
Java中 String、StringBuffer、StringBuilder 的区别详解
开发语言·python