npm install axios-cache-plugin --save 或者 yarn add axios-cache-plugin 用法 将缓存功能添加到axios import axios from 'axios' import wrapper from 'axios-cache-plugin' let http = wrapper ( axios , { maxCacheSize : 15 } ) export default http 或axios实例 import axios from 'axios' import ...