Axios adapter 实现缓存接口数据

直接上代码

cache.js

import axios from 'axios'

/**
 * API
 * time 表示可缓存的时间,默认为 0,在没有清除内存之前永久缓存(浏览器窗口标签关闭,应用程序关闭等会清除内存)
 *
 * 防止重复提交
 * time 设置一个极短的时间,比如 1000,就表示在1000毫秒之内不会重复向服务器发出请求
 */

// 数据存储
export const cache = {
  data: {},
  set(key, data) {
    this.data[key] = data
  },
  get(key) {
    return this.data[key]
  },
  clear(key) {
    delete this.data[key]
  },
}

// 建立唯一的key值
export const buildUniqueUrl = (url, method, params = {}, data = {}) => {
  const paramStr = obj => {
    if (toString.call(obj) === '[object Object]') {
      return JSON.stringify(
        Object.keys(obj)
          .sort()
          .reduce((result, key) => {
            result[key] = obj[key]
            return result
          }, {})
      )
    } else {
      return JSON.stringify(obj)
    }
  }
  url += `?${paramStr(params)}&${paramStr(data)}&${method}`
  return url
}

/**
 * @param {object} options
 * @param {number} options.time=0 默认缓存
 */
export default ({ time = 0 } = {}) => async config => {
  config.url = config.url.replace(/t=\d+&?/, '')
  const index = buildUniqueUrl(
    config.url,
    config.method,
    config.params,
    config.data
  )
  let responsePromise = cache.get(index)
  if (!responsePromise) {
    responsePromise = (async () => {
      try {
        const response = await axios.defaults.adapter(config)
        return Promise.resolve(response)
      } catch (reason) {
        cache.clear(index)
        return Promise.reject(reason)
      }
    })()
    cache.set(index, responsePromise)
    if (time !== 0) {
      setTimeout(() => {
        cache.clear(index)
      }, time)
    }
  }
  return responsePromise.then(data => JSON.parse(JSON.stringify(data))) // 为防止数据源污染
}

api.js

import axios from 'axios'
import cache from 'cache'

export function getUserList(params = {}) {
  return axios.get('/user-list', {
    params,
    adapter: cache(),
  })
}
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值