這篇文章主要介紹weex中Vuex state如何使用storage持久化,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
成都創(chuàng)新互聯(lián)公司專注于大理州網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供大理州營銷型網(wǎng)站建設(shè),大理州網(wǎng)站制作、大理州網(wǎng)頁設(shè)計(jì)、大理州網(wǎng)站官網(wǎng)定制、微信小程序開發(fā)服務(wù),打造大理州網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供大理州網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
?在weex里使用Vuex作為state管理工具,問題來了,如何使得state可以持久化呢?weex官方提供store模塊,因此我們可以嘗試使用該模塊來持久化state。
先看下該模塊介紹:
storage 是一個(gè)在前端比較常用的模塊,可以對本地?cái)?shù)據(jù)進(jìn)行存儲、修改、刪除,并且該數(shù)據(jù)是永久保存的,除非手動(dòng)清除或者代碼清除。但是,storage 模塊有一個(gè)限制就是瀏覽器端(H5)只能存儲小于5M的數(shù)據(jù),因?yàn)樵?H5/Web 端的實(shí)現(xiàn)是采用 HTML5 LocalStorage API。而 Android 和 iOS 這塊是沒什么限制的。
首先,引入模塊:
const storage = weex.requireModule('storage')
定義state
var state = { banner:[], activeTabIndex:0, lists: { searchList:[], tabColumns: { new:[], hot:[], select:[] }, items:[] } }
初始化時(shí),從storage加載state數(shù)據(jù)
// 從storage里加載數(shù)據(jù) storage.getItem(STORAGE_KEY, event => { if (event.result == "success" && event.data){ // 這里可以使用extend等方法,這里僅舉例說明 var data = JSON.parse(event.data); state.banner = data.banner; state.activeTabIndex = data.activeTabIndex; } })
關(guān)鍵來了,如何存儲?Vuex提供了插件機(jī)制,我們可以通過插件訂閱state的每一次更改,在更改的時(shí)候保存我們感興趣的就OK了
// 存儲plugin,存儲感興趣的數(shù)據(jù),store里數(shù)據(jù)太多,沒必要全持久化 const storagePlugin = store => { store.subscribe((mutation, {activeTabIndex,banner}) => { storage.setItem(STORAGE_KEY, JSON.stringify({activeTabIndex,banner}),event => { console.log('cache success'); }) }) }
最后,創(chuàng)建Vuex,大功告成
const store = new Vuex.Store({ actions, mutations, plugins:[storagePlugin], state: state, getters: { // ids of the items that should be currently displayed based on // current list type and current pagination activeIds (state) { const { activeType, lists, counts } = state return activeType ? lists[activeType].slice(0, counts[activeType]) : [] }, // items that should be currently displayed. // this Array may not be fully fetched. activeItems (state, getters) { return getters.activeIds.map(id => state.items[id]).filter(_ => _) } } })
以上是“weex中Vuex state如何使用storage持久化”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
網(wǎng)站標(biāo)題:weex中Vuexstate如何使用storage持久化
本文網(wǎng)址:http://jinyejixie.com/article10/gdpgdo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供全網(wǎng)營銷推廣、App開發(fā)、外貿(mào)網(wǎng)站建設(shè)、網(wǎng)站策劃、網(wǎng)站維護(hù)、網(wǎng)站設(shè)計(jì)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)