91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用vuex緩存數據并優化自己的vuex-cache

發布時間:2020-08-31 23:51:58 來源:腳本之家 閱讀:432 作者:lujs 欄目:web開發

需求:

  1. 請求接口之后,緩存當前接口的數據,下次請求同一接口時拿緩存數據,不再重新請求
  2. 添加緩存失效時間

cache使用map來實現

ES6 模塊與 CommonJS 模塊的差異

  1. CommonJS 模塊輸出的是一個值的拷貝,ES6 模塊輸出的是值的引用。
  2. CommonJS 模塊是運行時加載,ES6 模塊是編譯時輸出接口。

因為esm輸出的是值的引用,直接就是單例模式了

詳細

export let cache = new Cache()

版本1

思路:

  1. 在vuex注冊插件,插件會在每次mutations提交之后,判斷要不要寫入cache
  2. 在提交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函數,在里面里面判斷是否需要緩存,緩存是否超時。

優化點:

  1. 把原本分散的cache操作統一放入到fetch
  2. 減少了對命名空間的操作
  3. 添加了緩存有效時間

/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
 }
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

奈曼旗| 阳泉市| 石渠县| 兴国县| 长宁县| 六枝特区| 清涧县| 桃园市| 岐山县| 昌都县| 岳西县| 翁牛特旗| 洛南县| 滕州市| 荃湾区| 防城港市| 河津市| 洪江市| 阿拉善盟| 垦利县| 会昌县| 梁平县| 乡城县| 临城县| 榆社县| 偏关县| 沽源县| 桃园市| 福贡县| 邻水| 安宁市| 张家界市| 烟台市| 抚州市| 平定县| 治多县| 遵义县| 寻乌县| 肃南| 漾濞| 凤山县|