search
HomeWeb Front-endHTML TutorialHTML5 storage detailed explanation

HTML5 storage detailed explanation

May 16, 2018 am 11:21 AM
h5html5

This article mainly introduces the detailed explanation of HTML5 storage storage. Interested friends can refer to it. I hope it will be helpful to everyone.

HTML5storage provides a way for websites to store information locally on your computer and retrieve it when needed later. This concept is similar to cookie, the difference is that it is designed for larger capacity storage. Cookie is limited in size, and cookie will be sent every time you request a new page. The #storage of HTML5 is stored on your computer. After the page is loaded, the website can use Javascript to get this data.

1sessionStorage

##Detection

!!window.sessionStorage;

Common methods

.key = value

.setItem(key,value)

.getItem(key)

.removeItem(key)

.clear()

window.sessionStorage.name = 'rainman';           // 赋值  
window.sessionStorage.setItem('name','cnblogs');  // 赋值  
window.sessionStorage.getItem('name');            // 取值  
window.sessionStorage.removeItem('name');         // 移除值  
window.sessionStorage.clear();                    // 删除所有sessionStorage


##Event:

window.onstorage

Detect value changes, browser support is not good.


illustrate:



    The storage of cookies is limited to 4k. In comparison, session storage has larger storage space, but as for the specific size, it depends on the browser manufacturer's specifications. accomplish.
  1. Cookie has a mechanism, which is to send the cookie to the server every time the client requests the server. This will undoubtedly do a lot of unnecessary operations, because not every request The server needs all the information of the cookie, and session storage solves this problem very well. It does not send it automatically, which reduces unnecessary work.
  2. The life cycle of data stored through sessionStorage is similar to Session. The data will no longer exist after closing the browser (or tab). But sessionStorage still exists after refreshing the page or using the "forward" or "back button".
  3. session storage The value of each window is independent (each window has its own data). Its data will disappear as the window is closed. The sessionStorage between windows It cannot be shared either.
  4. The key and value in setItem are stored in the form of strings. That is to say, if there is the following code: setItem(‘count’, 1); what you get through getItem(‘count’) 5 will not be the expected 6 (integer), but ‘16’ (string).
  5. When you use setItem again to set the value of an existing key, the new value will replace the old value.
  6. When the data in storage changes, the corresponding event (window.onstorage) will be triggered. However, the current support for this event in various browsers is not perfect and can be ignored for the time being.

2localStorage

Detection

!!window.localStorage;

方法和sessionStorage相同

说明:

  1. local storage把只把数据存储在了客户端使用,不会发送的服务器上(除非你故意这样做)。

  2. 而且对于某一个域下来说,local storage是共享的(多个窗口共享一个“数据库”)。

  3. localStorage用于持久化的本地存储,除非主动删除数据,否则数据是永远不会过期的。

举例

//结合JSON.stringify使用更强大  
var person = {'name': 'rainman', 'age': 24};  
localStorage.setItem("me", JSON.stringify(person));  
JSON.parse(localStorage.getItem('me')).name;    // 'rainman'  
  
/** 
* JSON.stringify,将JSON数据转化为字符串 
*     JSON.stringify({'name': 'fred', 'age': 24});   // '{"name":"fred","age":24}' 
*     JSON.stringify(['a', 'b', 'c']);               // '["a","b","c"]' 
* JSON.parse,反解JSON.stringify 
*     JSON.parse('["a","b","c"]')                    // ["a","b","c"] 
*/


3Database Storage

对简单的数据存储,使用sessionStoragelocalStorage能够很好地完成,但是在对琐碎的关系数据进行处理之外,它就力所不及了。而这正是 HTML 5 Web SQL Database”API 接口的应用所在。

A、打开链接

var db = openDatabase("ToDo", "0.1", "A lalert of to do items.", 200000);    // 打开链接  
if(!db) { alert("Failed to connect to database."); }                         // 检测连接是否创建成功


以上代码创建了一个数据库对象 db,名称是 Todo,版本编号为0.1db 还带有描述信息和大概的大小值。如果需要,这个大小是可以改变的,所以没有必要预先假设允许用户使用多少空间。

绝不可以假设该连接已经成功建立,即使过去对于某个用户它是成功的。为什么一个连接会失败,存在多个原因。也许用户代理出于安全原因拒绝你的访问,也许设备存储有限。面对活跃而快速进化的潜在用户代理,对用户的机器、软件及其能力作出假设是非常不明智的行为。比如,当用户使用手持设备时,他们可自由处置的数据可能只有几兆字节。

B、执行查询


db.transaction( function(tx) {   
            tx.executeSql(  
            "INSERT INTO ToDo (label, timestamp) values(?, ?)",   
            ['lebel', new Date().getTime()],   
            function(tx2, result){ alert('成功'); },   
            function(tx2, error){ alert('失败:' + error.message); }  
            );   
            });


  1. 执行SQL语句使用database.transaction()函数,该函数只有一个参数,负责执行查询的函数。

  2. 该函数具有一个类型事务的参数(tx)。

  3. 该事务参数(tx)具有一个函数:executeSql()。这个函数使用四个参数:
    表示查询的SQL字符串;插入到查询中问号所在处的字符串数据;一个成功时执行的函数;一个失败时执行的函数。

  4. 执行成功的函数有两个参数:tx2,事务性参数;result,执行的返回结果,结构如图

  5. 执行成功的函数也有两个参数:tx2,事务性参数;error,错误对象,结构如图 

C、其它

  • Chrome支持; firefox(测试时版本4.01)不支持;IE8不支持。

D、示例

//创建数据库  
var db = openDatabase("users", "1.0", "用户表", 1024 * 1024);   
if(!db){  
	    alert("Failed to connect to database.");   
	} else {  
	    alert("connect to database 'K'.");   
	}  
	  
	// 创建表  
	db.transaction( function(tx) {   
	    tx.executeSql(  
	        "CREATE TABLE IF NOT EXISTS users (id REAL UNIQUE, name TEXT)",   
	        [],   
	        function(){ alert('创建users表成功'); },   
	        function(tx, error){ alert('创建users表失败:' + error.message); }  
	    );  
	});   
	  
	// 插入数据  
	db.transaction(function(tx) {   
	    tx.executeSql(  
	        "INSERT INTO users (id, name) values(?, ?)",   
	        [Math.random(), 'space'],   
	        function(){ alert('插入数据成功'); },   
	        function(tx, error){ alert('插入数据失败: ' + error.message);}  
	    );   
	});   
	  
	// 查询  
	db.transaction( function(tx) {   	    tx.executeSql(  
	        "SELECT * FROM users", [],    
	         function(tx, result) {  
	            var rows = result.rows, length = rows.length, i=0;  
	            for(i; i < length; i++) {   
	                alert(  
	                    &#39;id=&#39; + rows.item(i)[&#39;id&#39;] +   
	                    &#39;name=&#39;+ rows.item(i)[&#39;name&#39;]  
	                );   
	            }   
	        },   
	        function(tx, error){  
	            alert(&#39;Select Failed: &#39; + error.message);  
	        }  
	    );   
	});   
	  
	// 删除表  
	db.transaction(function (tx) {    
	    tx.executeSql(&#39;DROP TABLE users&#39;);   
	    });


4globalStorage

This is also proposed in html5. After the browser is closed, the information stored using globalStorage can still be used Keep it, localStorageThe same, the information stored in any page in the domain can be shared by all pages

Basic syntax

  • globalStorage['developer.mozilla.org'] - All subdomains under developer.mozilla.org can store objects through this namespace Read and write.

  • globalStorage['mozilla.org'] - All web pages under the mozilla.org domain name can be read and written through this namespace storage object.

  • globalStorage['org'] - All web pages under the .org domain name can be read and written through this namespace storage object.

  • globalStorage[''] - Any web page under any domain name can read and write through this namespace storage object

Method attribute

  • setItem(key, value) - Set or reset the key value.

  • getItem(key) - Get the key value.

  • removeItem(key) - Delete the key value.

  • Set key value: window.globalStorage["planabc.net"].key = value;

  • Get key value: value = window .globalStorage["planabc.net"].key;

Other

  • Expired The time is the same as localStorage, and some other features are also similar to localStorage.

  • Currently Firefox only supports globalStorage storage under the current domain. If you use the public domain, it will cause an error similar to "Security error" code: "1000".

5、Compatibility

##OperaSafari (WebKit)localStoragesessionStorage--2------ Detailed explanation of vuex localstorage dynamic monitoring storage steps

Method

##Chrome

##Firefox (Gecko)

Internet Explorer

4

2

8

##10.50

4

5

2

8

##10.50

4

##globalStorage


related suggestion:

HTMl5 storage method sessionStorage and localStorage detailed explanation

vuex combines localstorage to dynamically monitor storage changes

The above is the detailed content of HTML5 storage detailed explanation. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
The Future of HTML, CSS, and JavaScript: Web Development TrendsThe Future of HTML, CSS, and JavaScript: Web Development TrendsApr 19, 2025 am 12:02 AM

The future trends of HTML are semantics and web components, the future trends of CSS are CSS-in-JS and CSSHoudini, and the future trends of JavaScript are WebAssembly and Serverless. 1. HTML semantics improve accessibility and SEO effects, and Web components improve development efficiency, but attention should be paid to browser compatibility. 2. CSS-in-JS enhances style management flexibility but may increase file size. CSSHoudini allows direct operation of CSS rendering. 3.WebAssembly optimizes browser application performance but has a steep learning curve, and Serverless simplifies development but requires optimization of cold start problems.

HTML: The Structure, CSS: The Style, JavaScript: The BehaviorHTML: The Structure, CSS: The Style, JavaScript: The BehaviorApr 18, 2025 am 12:09 AM

The roles of HTML, CSS and JavaScript in web development are: 1. HTML defines the web page structure, 2. CSS controls the web page style, and 3. JavaScript adds dynamic behavior. Together, they build the framework, aesthetics and interactivity of modern websites.

The Future of HTML: Evolution and Trends in Web DesignThe Future of HTML: Evolution and Trends in Web DesignApr 17, 2025 am 12:12 AM

The future of HTML is full of infinite possibilities. 1) New features and standards will include more semantic tags and the popularity of WebComponents. 2) The web design trend will continue to develop towards responsive and accessible design. 3) Performance optimization will improve the user experience through responsive image loading and lazy loading technologies.

HTML vs. CSS vs. JavaScript: A Comparative OverviewHTML vs. CSS vs. JavaScript: A Comparative OverviewApr 16, 2025 am 12:04 AM

The roles of HTML, CSS and JavaScript in web development are: HTML is responsible for content structure, CSS is responsible for style, and JavaScript is responsible for dynamic behavior. 1. HTML defines the web page structure and content through tags to ensure semantics. 2. CSS controls the web page style through selectors and attributes to make it beautiful and easy to read. 3. JavaScript controls web page behavior through scripts to achieve dynamic and interactive functions.

HTML: Is It a Programming Language or Something Else?HTML: Is It a Programming Language or Something Else?Apr 15, 2025 am 12:13 AM

HTMLisnotaprogramminglanguage;itisamarkuplanguage.1)HTMLstructuresandformatswebcontentusingtags.2)ItworkswithCSSforstylingandJavaScriptforinteractivity,enhancingwebdevelopment.

HTML: Building the Structure of Web PagesHTML: Building the Structure of Web PagesApr 14, 2025 am 12:14 AM

HTML is the cornerstone of building web page structure. 1. HTML defines the content structure and semantics, and uses, etc. tags. 2. Provide semantic markers, such as, etc., to improve SEO effect. 3. To realize user interaction through tags, pay attention to form verification. 4. Use advanced elements such as, combined with JavaScript to achieve dynamic effects. 5. Common errors include unclosed labels and unquoted attribute values, and verification tools are required. 6. Optimization strategies include reducing HTTP requests, compressing HTML, using semantic tags, etc.

From Text to Websites: The Power of HTMLFrom Text to Websites: The Power of HTMLApr 13, 2025 am 12:07 AM

HTML is a language used to build web pages, defining web page structure and content through tags and attributes. 1) HTML organizes document structure through tags, such as,. 2) The browser parses HTML to build the DOM and renders the web page. 3) New features of HTML5, such as, enhance multimedia functions. 4) Common errors include unclosed labels and unquoted attribute values. 5) Optimization suggestions include using semantic tags and reducing file size.

Understanding HTML, CSS, and JavaScript: A Beginner's GuideUnderstanding HTML, CSS, and JavaScript: A Beginner's GuideApr 12, 2025 am 12:02 AM

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)