LocalStorage stores Boolean valuesToday, when I used localstorage to store boolean data, I found that there was a problem with how to display the data on the page. Later I found that the boolean data stored in localstorage was converted into strings, which caused this problem. Therefore, "true"=true, "false"==false, and "true"==false are both displayed as false. The pitfalls of not using localstorage rigorouslyAfter launching the new version, we found that a very small number of "old" users were unable to open the homepage of our website in the WeChat browser. After an online file proxy After changing it, I finally found the problem. Problem code snippet: if (localstorage.getItem("things")) { var things = localstorage.getItem("things"); use(things); // Delete the cache after using it once localstorage.removeItem('things'); }else{ use(newData); } This code may seem fine at first glance, but it has hidden dangers. In the old version, the contents of things stored in localstorage are as follows: { name:'px', age:'25' } However, in the new version, due to demand issues, the value of this cache has changed to the following structure: { username:'px', myage:'25' } This results in an error when using the use function to process things, causing the subsequent removeItem to never be executed, so the cached data is never cleared in the code, and the use function always uses the old data for rendering, which results in an error and the new data can never be used. There are two points that need improvement * Add a version number to the cache * Clear the cache immediately after reading the cache with a variable The optimized code is as follows: //First determine the cache version number if (localstorage.getItem ("version") == curVersion) { if (localstorage.getItem("things")) { var things = localstorage.getItem("things"); //Clear immediately localstorage.removeItem('things'); use(things); }else{ use(newData); } }else{ localstorage.removeItem('things'); use(newData); } The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: How to install and use Cockpit on CentOS 8/RHEL 8
>>: Introduction to the properties of B-Tree
Operating system: Window10 MySQL version: 8.0.13-...
Hello everyone, today I will share with you the i...
I recently started learning the NestJs framework....
Table of contents Use of CURRENT_TIMESTAMP timest...
Table of contents 1. The role of index 2. Creatin...
1. ref is copied, the view will be updated If you...
The rich text component is a very commonly used c...
Today I got familiar with the mouse zooming effect...
The mysql on the server is installed with version...
load Request Success Request failed Click cmd and...
A Brief Discussion on the Navigation Window in If...
1. Download MySQL 1.1 Download address https://do...
Make a note so you can come back and check it lat...
Adding/removing classes to elements is a very com...
<br />Related articles: 9 practical suggesti...