How does HTML5 use local storage to store data locally? (I am using chrome, And the chrom browser uses SQLite to save local data)
HTML5 local storage stores data locally through a browser.
The basic usage is as follows:
<SCRIPT type = "text/JavaScript"> localstorage. firstname = "Tom"; alert (localstorage. firstname); </SCRIPT>
In this way, the data is saved locally, but in what form is the local data saved? After tracking, we found that in chrome, data is stored as SQLite database files.
In Windows, it is saved in C: \ Documents and Settings \ User Name \ Local Settings \ Application Data \ google \ chrome \ User Data \ Default \ Local Storage path (where user name refers to the current user name;
In Mac, it is stored in the/users/user name/library/Application Support/Google/Chrome/default/Local Storage path (where user name refers to the current user name ).
Although the suffix is. localstorege, it is actually a database file of SQLite. You can open it with SQLite and see the data in it. (You can use the SQLite manager additional component of Firefox to open it)
The steps for installing components are similar to those for installing firebug. Select the menu tool --> attachment component, open the attachment component settings page, search for the keyword "SQLite manager", install the "SQLite manager" plug-in, and restart Firefox, you can see the "SQLite manager" additional component in the tool, as shown in:
View the saved local data file