HTML5 Web缓存和运用程序缓存(cookie,session)
在介绍html5 web缓存前,来认识一下cookie和session:
session:
由于http是无状态的,你是谁?你干了什么?抱歉服务器都是不知道的。
因此session(会话)出现了,它会在服务器上存储用户信息以便将来使用(比如用户名称,购物车购买商品等)。
但是session是临时的,用户离开网站将被删除。如果要永久存储信息,可以保存在数据库中!
session工作原理:为每个用户创建一个session id(核心!!!)。而session id是存储在cookie中的,也就是说如果浏览器禁用了cookie,那么session会失效!(但是可以通过其它方式实现,如:通过url传递session id)
用户验证一般采用session。
cookie:
目的:网站标记用户身份而存储在本地客户端的数据(通常经过加密)。
- 用户访问网页时,名字记录在cookie中;
- 下次继续访问该网页时,可以从cookie中读取用户访问记录。
cookie会在同源的http请求携带(即使不需要),即在客户端和服务器之间来回传递!
cookie的数据大小不超过4k
cookie的有效期:设置的cookie有效时间之前一直有效,即使浏览器关闭!
localstorage & sessionstorage:
早期,本地缓存普遍使用的是cookie,但是web存储需要更安全、更快速!
这些数据不会保存在服务器上(存储在客户端),不会影响服务器性能!
sessionstorage和localstorage数据存储也有大小限制,但却比cookie大得多,可以达到5m甚至更大!
localstorage:没有时间限制的数据存储!
sessionstorage:由英文意思也可知,它是对session的数据存储,所以在用户关闭浏览器(标签页/窗口)后,数据被删除!
html5 web存储支持情况:
ie8以上,现代浏览器。
数据以键值对存储:
localstorage和sessionstorage都有以下几个方法:
- localstorage.setitem(key,value):设置(保存)数据;相当于localstorage.key=value!
- localstorage.getitem(key):获取数据
- localstorage.removeitem(key):删除单个数据
- localstorage.clear():删除所有数据
- localstorage.key(index):获取某个索引的键值
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>web storage</title> </head> <body> <div id="test"></div> <script> if (typeof (storage) != undefined) { localstorage.name = 'xiao ming'; localstorage.setitem('name1', 'apple'); document.getelementbyid('test').innerhtml = "you are: " + localstorage.name; console.log("first:" + localstorage.name1 + "," + localstorage.key(0)); localstorage.removeitem('name1'); console.log("second: " + localstorage.name1); console.log("third: " + localstorage.getitem('name')); localstorage.clear(); console.log("last:" + localstorage.name); } else { document.getelementbyid('test').innerhtml = "更新浏览器吧!目前浏览器不支持stroage"; } </script> </body> </html>
程序运行结果:
注意:键值对是以字符串保存的,根据需求应改变类型(比如做加法,变为number型)。
html5运用程序缓存(application cache):
通过创建cache manifest文件,web运用可被缓存,并且无网络状态可以进行访问!
application cache优势:
1.离线浏览;
2.速度更快:已缓存资源加载更快;
3.减少浏览器负载:客户端将只从服务器下载或更新更改过的资源
支持情况:
ie10以上,现代浏览器。
使用:
<!doctype html> <html manifest="demo.appcache"> </html>
注意:要开启application cache,需指定manifest属性(扩展名:.appcache);如果未指定manifest属性,页面不会缓存(除非在manifest文件中直接指定了该页面!)
manifest文件在服务器上需正确的配置mime-type:text/cache-manifest。
manifest文件:
manifest是简单的文本文件,它告知浏览器被缓存的内容以及不被缓存的内容!
manifest可分为三部分:
cache manifest:此项列出的文件将在首次下载后进行缓存!
network:此项列出的文件需要与服务器进行网络连接,不会被缓存!
fallback:此项列出当页面无法访问时的回退页面(如:404页面)!
test.appcache:
cache manifest #2017 11 21 v10.0.1 /test.css /logo.gif /main.js network /login.php /register.php fallback #/html/目录中文件无法访问时,用/offline.html替代 /html/ /offline.html
更新application cache的情况:
1.用户清空浏览器缓存!
2.manifest文件被更改(#:表示注释,同时如果更改为#2018 1 1 v20.0.0,则浏览器会重新缓存!)
3.程序进行更新application cache!
web workers:
web workers是运行在后台的javascript,独立于其它脚本,不会影响页面性能!
而一般的html页面上执行脚本时,除非脚本加载完成,否则页面不会响应!
支持情况:ie10以上,现代浏览器
示例:html文件:
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>web worker</title> </head> <body> <p>计数:<output id="count"></output></p> <button onclick="startworker()">开始</button> <button onclick="overworker()">结束</button> <script> var w; function startworker(){ // 检测浏览器是否支持web worker if(typeof(worker)!=='undefined'){ if(typeof(w)=='undefined'){ //创建web worker对象 w=new worker('testworker.js'); } // 事件持续监听(即使外部脚本已经完成),除非被终止 w.onmessage=function(event){ document.getelementbyid('count').innerhtml=event.data; }; }else{ document.getelementbyid('count').innerhtml='浏览器不支持web worker'; } } function overworker() { // 终止web worker对象,释放浏览器/计算机资源 w.terminate(); w=undefined; } </script> </body> </html>
testworker.js文件:
var i=0; function timedcount() { i+=1; // 重要的部分,向html页面传回一段信息 postmessage(i); settimeout('timedcount()',500); } timedcount();
注意1:通常web worker不是用于如此简单的任务,而是用在更耗cpu资源的任务!
注意2:在chrome中运行会产生“cannot be accessed from origin 'null'”的错误,我的解决方法是:xampp中开启apache,用http://localhost/进行访问。
web worker缺点:
由于web worker位于外部文件中,所以它无法访问下列javascript对象:
- window对象;
- document对象;
- parent对象。
html5 server-sent events(服务器发送事件):
server-sent事件是单向信息传递;网页可以自动获取来自服务器的更新!
以前:网页先询问是否有可用的更新,服务器发送数据,进行更新(双向数据传递)!
支持情况:除ie以外的现代浏览器均支持!
示例代码:html文件:
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>sever sent event</title> </head> <body> <p>sever sent event informations</p> <div id="test"></div> <script> // 判断浏览器是否支持eventsource if(typeof(eventsource)!==undefined){ // 创建eventsource对象 var source=new eventsource("test.php"); // 事件监听 source.onmessage=function(event){ document.getelementbyid('test').innerhtml+=event.data+"<br>"; }; }else{ document.getelementbyid('test').innerhtml="sorry,浏览器不支持server sent event"; } </script> </body> </html>
test.php:
<?php header('content-type:text/event-stream'); header('cache-control:no-cache'); $time=date('r'); echo "data:the server time is: {$time} \n\n"; // 刷新输出数据 flush();
注意:后面没有内容,php文件可以不用"?>"关闭!
html5 websocket:
- websocket是html5提供的一种在单个tcp连接上建立全双工(类似电话)通讯的协议;
- 浏览器和服务器之间只需要进行一次握手的操作,浏览器和服务器之间就形成了一条快速通道,两者之间就可直接进行数据传送;
- 浏览器通过javascript建立websocket连接请求,通过send()向服务器发送数据,onmessage()接收服务器返回的数据。
websocket如何兼容低浏览器:
- adobe flash socket;
- activex htmlfile(ie);
- 基于multipart编码发送xhr;
- 基于长轮询的xhr
websocket可以用在多个标签页之间的通信!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 如何使用“PHP” 彩蛋进行敏感信息获取
下一篇: canvas 阴影和图形变换的示例代码