html5 postMessage解决跨域、跨窗口新闻传递方案
平时做web开发的时候关于新闻传递,除了客户端与服务器传值还有几个经常会碰到的题目
1.页面和其打开的新窗口的数据传递
2.多窗口之间新闻传递
3.页面与嵌套的iframe新闻传递
4.上面三个题目的跨域数据传递
postMessage()
这些题目都有一些解决办法,但html5引入的message的API可以更方便、有用、安全的解决这些难题。postMessage()方法许可来自不同源的脚本采用异步体例进行有限的通讯,可以实现跨文本档、多窗口、跨域新闻传递。
postMessage(data,origin)方法接受两个参数
1.data:要传递的数据,html5规范中提到该参数可以是javascript的任意基本类型或可复制的对象,然而并不是所有欣赏器都做到了这点儿,部分欣赏器只能处理字符串参数,所以我们在传递参数的时候必要使用JSON.stringify()方法对对象参数序列化,在低版本IE中引用json2.js可以实现类似结果。
2.origin:字符串参数,指明目标窗口的源,协议+主机+端口号[+URL],URL会被忽略,所以可以不写,这个参数是为了安全考虑,postMessage()方法只会将message传递给指定窗口,当然假如乐意也可以建参数设置为"*",如许可以传递给任意窗口,假如要指定和当前窗口同源的话设置为"/"。
http://test.com/index.html
<div style="width:200px; float:left; margin-right:200px;border:solid 1px #333;"> <div id="color">Frame Color</div> </div> <div> <iframe id="child" src="http://lsLib.com/lsLib.html"></iframe> </div>
我们可以在http://test.com/index.html通过postMessage()方法向跨域的iframe页面http://lsLib.com/lsLib.html传递新闻
window.onload=function(){ window.frames[0].postMessage('getcolor','http://lslib.com'); }
接收新闻
test.com上面的页面向lslib.com发送了新闻,那么在lslib.com页面上如何接收新闻呢,监听window的message事件就可以
http://lslib.com/lslib.html
window.addEventListener('message',function(e){ if(e.source!=window.parent) return; var color=container.style.backgroundColor; window.parent.postMessage(color,'*'); },false);
如许我们就可以接收任何窗口传递来的新闻了,为了安全起见,我们行使这时候的MessageEvent对象判断了一下新闻源,MessageEvent是一个如许的东东
有几个紧张属性
1.data:顾名思义,是传递来的message
2.source:发送新闻的窗口对象
3.origin:发送新闻窗口的源(协议+主机+端口号)
如许就可以接收跨域的新闻了,我们还可以发送新闻回去,方法类似
简单的demo
在这个例子中,左边的div会根据右边iframe内div颜色转变而转变
<!DOCTYPE html> <html> <head> <title>Post Message</title> </head> <body> <div style="width:200px; float:left; margin-right:200px;border:solid 1px #333;"> <div id="color">Frame Color</div> </div> <div> <iframe id="child" src="http://lsLib.com/lsLib.html"></iframe> </div> <script type="text/javascript"> window.onload=function(){ window.frames[0].postMessage('getcolor','http://lslib.com'); } window.addEventListener('message',function(e){ var color=e.data; document.getElementById('color').style.backgroundColor=color; },false); </script> </body> </html> http://test.com/index.html
<!doctype html> <html> <head> <style type="text/css"> html,body{ height:100%; margin:0px; } </style> </head> <body style="height:100%;"> <div id="container" onclick="changeColor();" style="widht:100%; height:100%; background-color:rgb(204, 102, 0);"> click to change color </div> <script type="text/javascript"> var container=document.getElementById('container'); window.addEventListener('message',function(e){ if(e.source!=window.parent) return; var color=container.style.backgroundColor; window.parent.postMessage(color,'*'); },false); function changeColor () { var color=container.style.backgroundColor; if(color=='rgb(204, 102, 0)'){ color='rgb(204, 204, 0)'; }else{ color='rgb(204,102,0)'; } container.style.backgroundColor=color; window.parent.postMessage(color,'*'); } </script> </body> </html> http://lslib.com/lslib.html
在例子中页面加载的时候主页面向iframe发送’getColor‘ 请求(参数没实际用处)
window.onload=function(){ window.frames[0].postMessage('getcolor','http://lslib.com'); }
iframe接收新闻,并把当前颜色发送给主页面呢
window.addEventListener('message',function(e){ if(e.source!=window.parent) return; var color=container.style.backgroundColor; window.parent.postMessage(color,'*'); },false);
主页面接收新闻,更改本身div颜色
window.addEventListener('message',function(e){ var color=e.data; document.getElementById('color').style.backgroundColor=color; },false);
当点击iframe事触发其变色方法,把最新颜色发送给主页面
function changeColor () { var color=container.style.backgroundColor; if(color=='rgb(204, 102, 0)'){ color='rgb(204, 204, 0)'; }else{ color='rgb(204,102,0)'; } container.style.backgroundColor=color; window.parent.postMessage(color,'*'); }
主页面照旧行使刚才监听message事件的程序处理自身变色
window.addEventListener('message',function(e){ var color=e.data; document.getElementById('color').style.backgroundColor=color; },false);
最后
很简单的用法却解决了大题目,据说Facebook已经在使用了,而且这也是html5另一个API——web workers传递新闻的方法,那么它的欣赏器兼容性怎么样呢?所谓欣赏器兼容性几乎变成了IE几开始支持的题目了。。。不过好新闻是跟localStorage一样,IE8+都支持了,只不过有些欣赏器的低版本(比如FireFox4.0)并不支持window.onmessage=function(){}这种写法,所以我么最好使用事件绑定的写法,为了兼容IE,也要判断是否支持addEventListener。
以上就是本文的悉数内容,盼望对大家的学习有所帮助,也盼望大家多多支持图趣网。
本文地址:http://www.tuquu.com/tutorial/wd228.html