使用vuex缓存数据并优化自己的vuex-cache
作者:lujs 时间:2024-04-30 10:46:33
需求:
请求接口之后,缓存当前接口的数据,下次请求同一接口时拿缓存数据,不再重新请求
添加缓存失效时间
cache使用map来实现
ES6 模块与 CommonJS 模块的差异
CommonJS 模块输出的是一个值的拷贝,ES6 模块输出的是值的引用。
CommonJS 模块是运行时加载,ES6 模块是编译时输出接口。
因为esm输出的是值的引用,直接就是单例模式了
详细
export let cache = new Cache()
版本1
思路:
在vuex注册插件,插件会在每次mutations提交之后,判断要不要写入cache
在提交actions的时候判断是否有cache,有就拿cache里面的数据,然后把数据commit给mutataios
注意: 在插件里面获取的mutations-type是包含命名空间的,而在actions里面则是没有命名空间,需要补全。
/mutation-types.js
/**
* 需要缓存的数据会在mutations-type后面添加-CACHED
*/
export const SET_HOME_INDEX = 'SET_HOME_INDEX-CACHED'
/modules/home/index.js
const actions = {
/**
* @description 如果有缓存,就返回把缓存的数据,传入mutations,
* 没有缓存就从接口拿数据,存入缓存,把数据传入mutations
*/
async fetchAction ({commit}, {mutationType, fetchData, oPayload}) {
// vuex开启了命名空间,所这里从cachekey要把命名空间前缀 + type + 把payload格式化成JSON
const cacheKey = NAMESPACE + mutationType + JSON.stringify(oPayload)
const cacheResponse = cache.get(cacheKey || '')
if (!cacheResponse) {
const [err, response] = await fetchData()
if (err) {
console.error(err, 'error in fetchAction')
return false
}
commit(mutationType, {response: response, oPayload})
} else {
console.log('已经进入缓存取数据!!!')
commit(mutationType, {response: cacheResponse, oPayload})
}
},
loadHomeData ({ dispatch, commit }) {
dispatch(
'fetchAction',
{
mutationType: SET_HOME_INDEX,
fetchData: api.index,
}
)
}
}
const mutations = {
[SET_HOME_INDEX] (state, {response, oPayload}) {},
}
const state = {
indexData: {}
}
export default {
namespaced: NAMESPACED,
actions,
state,
getters,
mutations
}
编写插件,在这里拦截mutations,判断是否要缓存
/plugin/cache.js
import cache from 'src/store/util/CacheOfStore'
// import {strOfPayloadQuery} from 'src/store/util/index'
/**
* 在每次mutations提交之后,把mutations-type后面有CACHED标志的数据存入缓存,
* 现在key值是mutations-type
* 问题:
* 没办法区分不同参数query的请求,
*
* 方法1: 用每个mutations-type + payload的json格式为key来缓存数据
*/
function cachePlugin () {
return store => {
store.subscribe(({ type, payload }, state) => {
// 需要缓存的数据会在mutations-type后面添加CACHED
const needCache = type.split('-').pop() === 'CACHED'
if (needCache) {
// 这里的type会自动加入命名空间所以 cacheKey = type + 把payload格式化成JSON
const cacheKey = type + JSON.stringify(payload && payload.oPayload)
const cacheResponse = cache.get(cacheKey)
// 如果没有缓存就存入缓存
if (!cacheResponse) {
cache.set(cacheKey, payload.response)
}
}
console.log(cache)
})
}
}
const plugin = cachePlugin()
export default plugin
store/index.js
import Vue from 'vue'
import Vuex from 'vuex'
import home from './modules/home'
import cachePlugin from './plugins/cache'
Vue.use(Vuex)
const store = new Vuex.Store({
modules: {
home,
editActivity,
editGuide
}
plugins: [cachePlugin]
})
export default store
版本2
思路:直接包装fetch函数,在里面里面判断是否需要缓存,缓存是否超时。
优化点:
把原本分散的cache操作统一放入到fetch
减少了对命名空间的操作
添加了缓存有效时间
/actions.js
const actions = {
async loadHomeData ({ dispatch, commit }, oPayload) {
commit(SET_HOME_LOADSTATUS)
const [err, response] = await fetchOrCache({
api: api.index,
queryArr: oPayload.queryArr,
mutationType: SET_HOME_INDEX
})
if (err) {
console.log(err, 'loadHomeData error')
return [err, response]
}
commit(SET_HOME_INDEX, { response })
return [err, response]
}
}
在fetchOrCache判断是需要缓存,还是请求接口
/**
* 用这个函数就说明是需要进入缓存
* @param {*} api 请求的接口
* @param {*} queryArr 请求的参数
* @param {*} mutationType 传入mutationType作为cache的key值
*/
export async function fetchOrCache ({api, queryArr, mutationType, diff}) {
// 这里是请求接口
const fetch = httpGet(api, queryArr)
const cachekey = `${mutationType}:${JSON.stringify(queryArr)}`
if (cache.has(cachekey)) {
const obj = cache.get(cachekey)
if (cacheFresh(obj.cacheTimestemp, diff)) {
return cloneDeep(obj)
} else {
// 超时就删除
cache.delete(cachekey)
}
}
// 不取缓存的处理
let response = await fetch()
// 时间戳绑定在数组的属性上
response.cacheTimestemp = Date.now()
cache.set(cachekey, response)
// 返回cloneDeep的对象
return cloneDeep(response)
}
/**
* 判断缓存是否失效
* @param {*} diff 失效时间差,默认15分钟=900s
*/
const cacheFresh = (cacheTimestemp, diff = 900) => {
if (cacheTimestemp) {
return ((Date.now() - cacheTimestemp) / 1000) <= diff
} else {
return true
}
}
来源:https://segmentfault.com/a/1190000015075454
标签:vuex,缓存
0
投稿
猜你喜欢
python3库numpy数组属性的查看方法
2023-07-19 07:25:50
Python使用turtle库绘制小猪佩奇(实例代码)
2021-09-21 08:45:30
Python 中如何使用 virtualenv 管理虚拟环境
2022-02-20 00:57:44
基于 Python实现云服务器的CDN域名远程鉴权配置
2023-07-31 20:44:51
Python正则表达式中的re.S的作用详解
2021-12-30 11:54:42
Python 实现OpenCV格式和PIL.Image格式互转
2021-08-03 03:41:42
使用python的chardet库获得文件编码并修改编码
2022-02-23 18:22:35
合理关闭XHTML标签
2008-06-25 13:20:00
python使用ctypes调用扩展模块的实例方法
2021-11-01 22:22:58
详解Go语言中new和make关键字的区别
2024-05-21 10:19:20
商品评论的设计
2009-12-23 13:06:00
用于ETL的Python数据转换工具详解
2022-11-09 18:29:05
现代Python编程的四个关键点你知道几个
2023-11-22 02:17:42
详解centos7+django+python3+mysql+阿里云部署项目全流程
2024-01-24 15:10:54
在python带权重的列表中随机取值的方法
2022-05-09 01:44:25
10分钟教你本地配置多个git ssh连接的方法
2022-03-05 04:44:53
Python实现的下载8000首儿歌的代码分享
2021-02-03 05:41:51
浅谈MySQL中的子查询优化技巧
2024-01-19 12:01:45
让Django支持Sql Server作后端数据库的方法
2024-01-25 13:58:56
Python浅析匿名函数lambda的用法
2022-07-19 18:29:29