美文网首页
跨域及跨窗口数据传递

跨域及跨窗口数据传递

作者: greenteaObject | 来源:发表于2017-06-12 13:15 被阅读0次

    文章转载自:http://www.cnblogs.com/dolphinX/p/3464056.html

    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是一个这样的东东

    image.png

    有几个重要属性

    data:顾名思义,是传递来的message
    source:发送消息的窗口对象
    origin:发送消息窗口的源(协议+主机+端口号)
    这样就可以接收跨域的消息了,我们还可以发送消息回去,方法类似
    Demo

    相关文章

      网友评论

          本文标题:跨域及跨窗口数据传递

          本文链接:https://www.haomeiwen.com/subject/kdjlqxtx.html