使用vuex緩存數(shù)據(jù)并優(yōu)化自己的vuex-cache

需求:

成都創(chuàng)新互聯(lián)是一家專業(yè)從事做網(wǎng)站、成都做網(wǎng)站的網(wǎng)絡(luò)公司。作為專業(yè)的建站公司,成都創(chuàng)新互聯(lián)依托的技術(shù)實(shí)力、以及多年的網(wǎng)站運(yùn)營(yíng)經(jīng)驗(yàn),為您提供專業(yè)的成都網(wǎng)站建設(shè)、全網(wǎng)整合營(yíng)銷推廣及網(wǎng)站設(shè)計(jì)開發(fā)服務(wù)!

  1. 請(qǐng)求接口之后,緩存當(dāng)前接口的數(shù)據(jù),下次請(qǐng)求同一接口時(shí)拿緩存數(shù)據(jù),不再重新請(qǐng)求
  2. 添加緩存失效時(shí)間

cache使用map來(lái)實(shí)現(xiàn)

ES6 模塊與 CommonJS 模塊的差異

  1. CommonJS 模塊輸出的是一個(gè)值的拷貝,ES6 模塊輸出的是值的引用。
  2. CommonJS 模塊是運(yùn)行時(shí)加載,ES6 模塊是編譯時(shí)輸出接口。

因?yàn)閑sm輸出的是值的引用,直接就是單例模式了

詳細(xì)

export let cache = new Cache()

版本1

思路:

  1. 在vuex注冊(cè)插件,插件會(huì)在每次mutations提交之后,判斷要不要寫入cache
  2. 在提交actions的時(shí)候判斷是否有cache,有就拿cache里面的數(shù)據(jù),然后把數(shù)據(jù)commit給mutataios

注意: 在插件里面獲取的mutations-type是包含命名空間的,而在actions里面則是沒有命名空間,需要補(bǔ)全。

/mutation-types.js

/**
 * 需要緩存的數(shù)據(jù)會(huì)在mutations-type后面添加-CACHED
 */
export const SET_HOME_INDEX = 'SET_HOME_INDEX-CACHED'
/modules/home/index.js


const actions = {
 /**
  * @description 如果有緩存,就返回把緩存的數(shù)據(jù),傳入mutations,
  * 沒有緩存就從接口拿數(shù)據(jù),存入緩存,把數(shù)據(jù)傳入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('已經(jīng)進(jìn)入緩存取數(shù)據(jù)?。?!')
   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標(biāo)志的數(shù)據(jù)存入緩存,
 * 現(xiàn)在key值是mutations-type
 * 問題:
 * 沒辦法區(qū)分不同參數(shù)query的請(qǐng)求,
 *
 * 方法1: 用每個(gè)mutations-type + payload的json格式為key來(lái)緩存數(shù)據(jù)
 */
function cachePlugin () {
 return store => {
  store.subscribe(({ type, payload }, state) => {
   // 需要緩存的數(shù)據(jù)會(huì)在mutations-type后面添加CACHED
   const needCache = type.split('-').pop() === 'CACHED'
   if (needCache) {
    // 這里的type會(huì)自動(dòng)加入命名空間所以 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函數(shù),在里面里面判斷是否需要緩存,緩存是否超時(shí)。

優(yōu)化點(diǎn):

  1. 把原本分散的cache操作統(tǒng)一放入到fetch
  2. 減少了對(duì)命名空間的操作
  3. 添加了緩存有效時(shí)間

/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判斷是需要緩存,還是請(qǐng)求接口

/**
 * 用這個(gè)函數(shù)就說(shuō)明是需要進(jìn)入緩存
 * @param {*} api 請(qǐng)求的接口
 * @param {*} queryArr 請(qǐng)求的參數(shù)
 * @param {*} mutationType 傳入mutationType作為cache的key值
 */
export async function fetchOrCache ({api, queryArr, mutationType, diff}) {
 // 這里是請(qǐng)求接口
 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 {
   // 超時(shí)就刪除
   cache.delete(cachekey)
  }
 }
 // 不取緩存的處理
 let response = await fetch()
 // 時(shí)間戳綁定在數(shù)組的屬性上
 response.cacheTimestemp = Date.now()
 cache.set(cachekey, response)
 // 返回cloneDeep的對(duì)象
 return cloneDeep(response)
}
/**
 * 判斷緩存是否失效
 * @param {*} diff 失效時(shí)間差,默認(rèn)15分鐘=900s
 */
const cacheFresh = (cacheTimestemp, diff = 900) => {
 if (cacheTimestemp) {
  return ((Date.now() - cacheTimestemp) / 1000) <= diff
 } else {
  return true
 }
}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。

網(wǎng)站題目:使用vuex緩存數(shù)據(jù)并優(yōu)化自己的vuex-cache
標(biāo)題路徑:http://muchs.cn/article28/jsojcp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供搜索引擎優(yōu)化商城網(wǎng)站、ChatGPT小程序開發(fā)、品牌網(wǎng)站設(shè)計(jì)、營(yíng)銷型網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

小程序開發(fā)