This article mainly shares with you a summary of HTML5 storage methods. I hope it can help HTML5 developers and help everyone better master HTML5 storage methods.
The Savage Growth of Cookies
Local Storage localstorage
Local Storage sessionstorage
Offline cache (application cache)
Web SQL
IndexedDB
Before HTML5
appeared, Cookies
occupied the entire world of client storage, just like the barbaric growth of the barbaric era. cookies
Meet the needs of practical applications well and quickly. But its problems are also obvious. cookies
will carry data in the request header, and the size is limited to 4K, which is very unsafe and easy to be intercepted by the outside. There are also domain
pollute.
IE
The browser especially likes to create its own set. To increase the storage capacity, UserData
is added. The size is 64K
, but other browsers The computer doesn't like to play with it, so it is the only one that supports it.
Then, here comes the point. Since there are so many problems with cookies
, we must find ways to solve them, otherwise we will not be able to move forward. First identify its problems and then find solutions based on those problems.
Solve 4K
Storage capacity problem
Solve the problem of request headers with storage information, which is to increase security , data storage and transmission through encrypted channels or methods
Solving the problem of relational storage
Cross-browser
Storage method
Stored in the form of key-value pairs, permanently stored, and will never expire unless Delete manually.
Storage capacity
5M
per domain name.
Commonly used API
getItem
//Get the record
setItem
//Set the record
removeItem
//Remove the record
key
//Get the value corresponding to key
clear
//Clear the record
Local storage of HTML5
localstorage# in API
## and sessionstorage
are the same in usage. The difference is that sessionstorage
will be cleared after closing the page, while localstorage
will always be saved unless manually delete. Offline cache (application cache)
1. Configuration
manifestFileOn page:
<!DOCTYPE HTML> <html manifest="demo.appcache"> ... </html>
manifestFile:
Is the simplest text file that tells the browser what is cached (and what is not cached).
manifestThe file is divided into three parts:
- In this title The files listed below will be cached after the first download
- Files under this heading require a connection to the server and will not be cached
- The files under this heading specify the fallback page when the page cannot be accessed (such as the 404
page)
demoCACHE MANIFEST
# 2016-07-24 v1.0.0
/theme.css
/main.js
NETWORK:
login.jsp
FALLBACK:
/html/ /offline.html
manifest file needs to be configured correctly MIME-type
, which is text/cache-manifest
.
APIThe core is the
object, which has a status
attribute, indicating the application The current status of the cache:
: No cache, no application cache related to the page
: Idle , the application cache has not been updated
: Checking, downloading the description file and checking for updates
: Downloading, the application cache is downloading the resources specified in the description file
: The update is completed, all resources have been downloaded
: Abandoned, the application cache description file no longer exists, so the page can no longer access the application cache
indicates the application cache status Changes to:
checking: Triggered when the browser is looking for updates for the app cache
: An error occurred during checking for updates or downloading a resource Triggered when
: Triggered when checking the description file and found that the file has no changes
: Triggered when starting to download application cache resources
: Triggered when the file download application cache continues to download
: Triggered when the new application cache download of the page is completed
: Triggered when the application cache is fully available
Three advantages of application cache: 离线浏览 提升页面载入速度 降低服务器压力 注意事项: 浏览器对缓存数据的容量限制可能不太一样(某些浏览器设置的限制是每个站点 如果是 引用 浏览器会自动缓存引用 更新完版本后,必须刷新一次才会启动新版本(会出现重刷一次页面的情况),需要添加监听版本事件 站点中的其他页面即使没有设置 当 离线缓存和传统浏览器缓存的区别 离线缓存是针对整个应用,浏览器缓存是单个文件 离线缓存可以主动通知浏览器更新资源 核心方法 打开数据库 执行查询操作 插入数据 读取数据 索引数据库( 异步 在 相关推荐:
5M
)manifest
文件,或者内部列举的某一个文件不能正常下载,整个更新过程将视为失败,浏览器继续全部使用旧的缓存manifest
的html
必须与manifest
文件同源,在同一个域下manifest
文件的html
文件,这就导致了如果更改了html
内容,也需要更新版本才能做到最新manifest
文件中的CACHE
与NETWOrK
、FALLBACK
的位置顺序没有关系,如果是隐式声明需要在最前面FALLBACK
中的资源必须和manifest
文件同源manifest
属性,请求的资源如果在缓存中也从缓存中访问manifest
文件发生改变时,资源请求本身也会触发更新
Web SQL
Web SQL
数据库API
并不是HTML5
规范的一部分,但它是一个独立的规范,引入了一组使用SQL
操作客户端数据库的APIs
。
openDatabase
:使用现有的数据库或新建的数据库创建一个数据库对象transaction
: 控制一个事务,以及基于这种情况执行提交或回滚executeSql
:用于执行实际的SQL
查询var db = openDatabase('mydb', '1.0', 'TEST DB', 2 * 1024 * 1024, fn);
var db = openDatabase('mydb', '1.0', 'TEST DB', 2 * 1024 * 1024);
db.transaction(function (tx) {
tx.executeSql('CREATE TABLE IF NOT EXISTS WIN (id unique, name)');
})
注:博客主题里的代码块样式
var db = openDatabase('mydb', '1.0', 'Test DB', 2 * 1024 * 1024);
db.transaction(function (tx) {
tx.executeSql('CREATE TABLE IF NOT EXISTS WIN (id unique, name)');
tx.executeSql('INSERT INTO WIN (id, name) VALUES (1, "winty")');
tx.executeSql('INSERT INTO WIN (id, name) VALUES (2, "LuckyWinty")');
});
注:需要实现的代码块样式,这个是 markdowpad2 里的操作,也是很多markdown写作工具提供的操作,只需要按一下 tab 键,非常方便
var db = openDatabase('mydb', '1.0', 'Test DB', 2 * 1024 * 1024);
db.transaction(function (tx) {
tx.executeSql('CREATE TABLE IF NOT EXISTS WIN (id unique, name)');
tx.executeSql('INSERT INTO WIN (id, name) VALUES (1, "winty")');
tx.executeSql('INSERT INTO WIN (id, name) VALUES (2, "LuckyWinty")');
});
db.transaction(function (tx) {
tx.executeSql('SELECT * FROM WIN', [], function (tx, results) {
var len = results.rows.length, i;
msg = "<p>查询记录条数: " + len + "</p>";
document.querySelector('#status').innerHTML += msg;
for (i = 0; i < len; i++){
alert(results.rows.item(i).name );
}
}, null);
});
IndexedDB
IndexedDB
)API
(作为HTML5
的一部分)对创建具有丰富本地存储数据的数据密集型的离线HTML5 Web
应用程序很有用,同时它还有助于本地缓存数据,使传统在线Web
应用程序(比如移动Web
应用程序)能够快速的运行和响应。API
IndexedDB
大部分操作并不是我们常用的调用方法(返回结果的模式),而是(请求-响应模式),比如打开数据库的操作。
The above is the detailed content of Summary of HTML5 storage methods. For more information, please follow other related articles on the PHP Chinese website!