vuex-persist數據持久化存儲插件

Vuex 解決了多視圖之間的數據共享問題。可是運用過程當中又帶來了一個新的問題是,Vuex 的狀態存儲並不能持久化。也就是說當你存儲在 Vuex 中的 store 裏的數據,只要一刷新頁面,數據就丟失了。javascript

引入vuex-persist 插件,它就是爲 Vuex 持久化存儲而生的一個插件。不須要你手動存取 storage ,而是直接將狀態保存至 cookie 或者 localStorage 中。具體用法以下vue

pexels-photo-1211847.jpeg

安裝:java

npm install --save vuex-persist
or yarn add vuex-persist 

引入:git

import VuexPersistence from 'vuex-persist' 

先建立一個對象並進行配置:github

const vuexLocal = new VuexPersistence({ storage: window.localStorage }) 

引入進vuex插件:vuex

const store = new Vuex.Store({ state: { ... }, mutations: { ... }, actions: { ... }, plugins: [vuexLocal.plugin] }) 

經過以上設置,在圖3中各個頁面之間跳轉,若是刷新某個視圖,數據並不會丟失,依然存在,而且不須要在每一個 mutations 中手動存取 storage 。npm

vuex-persist 的詳細屬性:cookie

屬性 類型 描述
key string 將狀態存儲在存儲中的鍵。默認: 'vuex'
storage Storage (Web API) 可傳localStorage, sessionStorage, localforage 或者你自定義的存儲對象. 接口必需要有get和set. 默認是: window.localStorage
saveState function (key, state[, storage]) 若是不使用存儲,這個自定義函數將保存狀態保存爲持久性。
restoreState function (key[, storage]) => state 若是不使用存儲,這個自定義函數處理從存儲中檢索狀態
reducer function (state) => object 將狀態減小到只須要保存的值。默認狀況下,保存整個狀態。
filter function (mutation) => boolean 突變篩選。看mutation.type並返回true,只有那些你想堅持寫被觸發。全部突變的默認返回值爲true。
modules string[] 要持久化的模塊列表。

 

原文session

相關文章
相關標籤/搜索