Business requirements:When developing SPA projects based on Vue, in order to solve the problem of data loss after page refresh, we generally store data in localstorage or sessionstorage; when data needs to be globally processed and managed uniformly, we will also use vuex officially provided by Vue to manage data uniformly. Compared with localstorage or sessionstorage, vuex is safer in storing data. At the same time, vuex also has some disadvantages. When the page is refreshed, the data stored in the state of vuex will also be updated. The data stored in vuex cannot be persisted, and monitoring processing is required to maintain the persistence of the data state stored in vuex. In order to solve the problem that the data status stored in vuex cannot be persisted after the page is refreshed, the solution I adopted is to use a third-party plug-in tool to realize the persistent storage of vuex data to solve the problem of data update after the page is refreshed. Solution 1: vuex-persistedstateInstall the plugin yarn add vuex-persistedstate // or npm install --save vuex-persistedstate How to use import Vuex from "vuex"; // Import the plugin import createPersistedState from "vuex-persistedstate"; Vue.use(Vuex); const state = {}; const mutations = {}; const actions = {}; const store = new Vuex.Store({ state, mutations, actions, /* vuex data persistence configuration */ plugins: [ createPersistedState({ // Storage methods: localStorage, sessionStorage, cookies storage: window.sessionStorage, // The key value of the stored key key: "store", render(state) { //Data to be stored: This project uses the es6 extension operator to store all the data in state return { ...state }; } }) ] }); export default store; Persistent storage of module data in vuex /* module.js */ export const dataStore = { state: { data: [] } } /* store.js */ import { dataStore } from './module' const dataState = createPersistedState({ paths: ['data'] }); export new Vuex.Store({ modules: dataStore }, plugins: [dataState] }); Note:
Solution 2: vuex-persistInstall the plugin yarn add vuex-persist // or npm install --save vuex-persist How to use import Vuex from "vuex"; // Import the plugin import VuexPersistence from "vuex-persist"; Vue.use(Vuex); // Initialize const state = { userName:'admin' }; const mutations = {}; const actions = {}; // Create an instance const vuexPersisted = new VuexPersistence({ storage: window.sessionStorage, render:state=>({ userName:state.userName // or...state }) }); const store = new Vuex.Store({ state, actions, mutations, //Data persistence settings plugins: [vuexPersisted.plugins] }); export default store; Property Methods
Summarize The above two solutions can realize the persistent storage of vuex data. Solution 1 is what I used in the actual development process, and Solution 2 is what I saw on Github. In general, both can meet the final needs of the time, and there are corresponding case demos for reference. In comparison, the number of starts for Solution 1 on GitHub is higher than that for Solution 2. Please choose the solution that suits you based on the actual situation! This concludes this article on two implementation solutions for vuex data persistence. For more relevant vuex data persistence content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Solve the problem of installing Theano on Ubuntu 19
>>: Detailed explanation of mysql replication tool based on python
<br />Adding pictures reasonably can make a ...
Tomcat CentOS Installation This installation tuto...
Table of contents 1. Overview 2. Use Keepalived t...
If you use docker for large-scale development but...
Table of contents 1. Introduction 2. Usage 3. Dev...
introduce HTML provides the contextual structure ...
Table of contents Introduction Download and insta...
When we introduced nginx, we also used nginx to s...
In actual work or interviews, we often encounter ...
introduce RANGE partitioning is based on a given ...
Table of contents 1. Introduction 2. es5 method 3...
To be honest, this question involves a lot of cor...
This article example shares the specific code of ...
Preface When you install MySQL, you usually creat...
1. Download Download address: https://dev.mysql.c...