Detailed explanation of vue page state persistence

Detailed explanation of vue page state persistence

Requirement : left tree and right table. After selecting a node in the organization tree, enter the details page and keep it selected when returning. Other query conditions also need to maintain state.

Idea : Use vuex combined with localStorage to cache data. When a tree node or query button is clicked, the data is saved in vuex and also in localStorage. When the page rolls back, the data in localStorage is put into vuex. In the page code, it is determined whether there is data stored in vuex. If there is, it is used directly. If not, the initial data is used by default. When the page navigation route jumps, the cached page data is cleared.

Code:

When a tree node is clicked, the id is saved in vuex. Triggering actions through dispatch

this.$store.dispatch('SetDeviceFaultId', data.id)

In vuex's actions, trigger the methods in mutations by committing

RemoveDeviceFaultId({ commit }) { //commit('REMOVE_DEVICEFAULTID') will be used later to clear data;
},
SetDeviceManageId({ commit }, id) {  
    commit('SET_DEVICEMANAGEID', id);
},

mutations : modify data

REMOVE_DEVICEFAULTID: (state) => {
      state.devicFaultId = null     
      Storage.remove('devicFaultId');
},
SET_DEVICEMANAGEID: (state, deviceManageId) => {
      state.deviceManageId = deviceManageId
      Storage.set('deviceManageId', deviceManageId);
}

state: Get cached data from localStorage when the page is first created

devicFaultId: Storage.get('devicFaultId'),

Enter a detail page and return

this.params.organizeId = this.$store.state.tree.devicFaultId ? this.$store.state.tree.devicFaultId : res.data[0].id;

When clicking on other routes, remember to clear the cached data

this.$store.dispatch('RemoveDeviceFaultId')

Replenish:

storage.js code

After introducing it in vuex, you can use it through Storage.set

Summarize

This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • How to implement data persistence using the vuex third-party package
  • Ideas and codes for implementing Vuex data persistence
  • Vuex implements data state persistence
  • Vuex persistence plug-in (vuex-persistedstate) solves the problem of refresh data disappearance
  • Implementation code of persistent storage data in vue project

<<:  Implementation of services in docker accessing host services

>>:  Summary of block-level elements, inline elements, and variable elements

Recommend

Detailed tutorial on installing MySQL database in Linux environment

1. Install the database 1) yum -y install mysql-s...

Detailed explanation of the working principle and solution of Js modularization

Table of contents 1. Modular concept 2. Modulariz...

Detailed explanation of linux nslookup command usage

[Who is nslookup?] 】 The nslookup command is a ve...

JavaScript source code for Elimination

JavaScript to achieve the source code download ad...

Windows 10 1903 error 0xc0000135 solution [recommended]

Windows 10 1903 is the latest version of the Wind...

Mysql transaction isolation level principle example analysis

introduction You must have encountered this in an...

Markup language - CSS layout

Click here to return to the 123WORDPRESS.COM HTML ...

How to find and delete duplicate rows in MySQL

Table of contents 1. How to find duplicate rows 2...

Vue+video.js implements video playlist

This article shares the specific code of vue+vide...

MySQL 8.0.13 installation and configuration graphic tutorial

Msyql database installation, for your reference, ...

Do not start CSS pseudo-class names with numbers

When newbies develop div+css, they need to name t...

Analysis of the process of deploying pure HTML files in Tomcat and WebLogic

1. First, the pure HTML file must have an entry i...

A complete list of commonly used MySQL functions (classified and summarized)

1. Mathematical Functions ABS(x) returns the abso...

Detailed explanation of MySQL slow queries

Query mysql operation information show status -- ...

Vue el-date-picker dynamic limit time range case detailed explanation

There are two situations 1. Start time and end ti...