Two implementation solutions for vuex data persistence

Two implementation solutions for vuex data persistence

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-persistedstate

Install 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:

  1. storage is the storage method, and the optional values ​​are localStorage, sessionStorage and cookies;
  2. The localStorage and sessionStorage storage methods can be written in the above code. If you want to use cookies to store data, you need another way to write it;
  3. Render receives a function and returns an object. The key-value pairs in the returned object are the data to be stored persistently.
  4. If you want to persist some data, please use key:value pairs to store data in the returned object. The parameter in the render function is the state object.

Solution 2: vuex-persist

Install 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

Property Value Data Types describe
key string The key to store the state in the storage_ Default: 'vuex' _
storage Storage (Web API) localStorage, sessionStorage, localforage or your custom Storage object. Must implement getItem, setItem, clear etc. Default: window.localStorage
saveState function(key, state[, storage]) If not using storage, this custom function handles saving state to persistence
reducer function(state) => object State reducer. reduces state to only those values ​​you want to save. By default, saves entire state
filter function(mutation) => boolean Mutation filter. Look at mutation.type and return true for only those ones which you want a persistence write to be triggered for. Default returns true for all mutations
modules string[] List of modules you want to persist. (Do not write your own reducer if you want to use this)
asyncStorage boolean Denotes if the store uses Promises (like localforage) or not (you must set this to true when suing something like localforage) Default: false
supportCircular boolean Denotes if the state has any circular references to it self(state.x === state) Default: false

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:
  • Vuex persistence plug-in (vuex-persistedstate) solves the problem of refresh data disappearance
  • Use vuex to solve the problem of state data disappearing when refreshing the page
  • Solve the initialization operation after refreshing the vuex data page
  • Data loss after vuex refresh, data persistence, vuex-persistedstate problem

<<:  Solve the problem of installing Theano on Ubuntu 19

>>:  Detailed explanation of mysql replication tool based on python

Recommend

XHTML Getting Started Tutorial: XHTML Web Page Image Application

<br />Adding pictures reasonably can make a ...

Tomcat CentOS installation process diagram

Tomcat CentOS Installation This installation tuto...

Common methods and problems of Docker cleaning

If you use docker for large-scale development but...

Use Javascript to develop sliding-nav navigation plug-in with sliding bar effect

Table of contents 1. Introduction 2. Usage 3. Dev...

Semanticization of HTML tags (including H5)

introduce HTML provides the contextual structure ...

Detailed tutorial on installing Docker and docker-compose suite on Windows

Table of contents Introduction Download and insta...

How to use squid to build a proxy server for http and https

When we introduced nginx, we also used nginx to s...

11 ways to remove duplicates from js arrays

In actual work or interviews, we often encounter ...

Example of adding and deleting range partitions in MySQL 5.5

introduce RANGE partitioning is based on a given ...

Serial and parallel operations in JavaScript

Table of contents 1. Introduction 2. es5 method 3...

js to implement add and delete table operations

This article example shares the specific code of ...

Example of how to create a local user in mysql and grant database permissions

Preface When you install MySQL, you usually creat...

MySQL 5.7.31 64-bit free installation version tutorial diagram

1. Download Download address: https://dev.mysql.c...