您當(dāng)前位置:圖趣網(wǎng)(Tuquu) >> 網(wǎng)頁(yè)設(shè)計(jì)教程 >> 移動(dòng)前端 >> 瀏覽設(shè)計(jì)教程

html5 postMessage解決跨域、跨窗口新聞傳遞方案

平時(shí)做web開發(fā)的時(shí)候關(guān)于新聞傳遞,除了客戶端與服務(wù)器傳值還有幾個(gè)經(jīng)常會(huì)碰到的題目

1.頁(yè)面和其打開的新窗口的數(shù)據(jù)傳遞

2.多窗口之間新聞傳遞

3.頁(yè)面與嵌套的iframe新聞傳遞

4.上面三個(gè)題目的跨域數(shù)據(jù)傳遞

postMessage()

這些題目都有一些解決辦法,但html5引入的message的API可以更方便、有用、安全的解決這些難題。postMessage()方法許可來(lái)自不同源的腳本采用異步體例進(jìn)行有限的通訊,可以實(shí)現(xiàn)跨文本檔、多窗口、跨域新聞傳遞。

postMessage(data,origin)方法接受兩個(gè)參數(shù)

 1.data:要傳遞的數(shù)據(jù),html5規(guī)范中提到該參數(shù)可以是&#106avascript的任意基本類型或可復(fù)制的對(duì)象,然而并不是所有欣賞器都做到了這點(diǎn)兒,部分欣賞器只能處理字符串參數(shù),所以我們?cè)趥鬟f參數(shù)的時(shí)候必要使用JSON.stringify()方法對(duì)對(duì)象參數(shù)序列化,在低版本IE中引用json2.js可以實(shí)現(xiàn)類似結(jié)果。

2.origin:字符串參數(shù),指明目標(biāo)窗口的源,協(xié)議+主機(jī)+端口號(hào)[+URL],URL會(huì)被忽略,所以可以不寫,這個(gè)參數(shù)是為了安全考慮,postMessage()方法只會(huì)將message傳遞給指定窗口,當(dāng)然假如樂意也可以建參數(shù)設(shè)置為"*",如許可以傳遞給任意窗口,假如要指定和當(dāng)前窗口同源的話設(shè)置為"/"。

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頁(yè)面http://lsLib.com/lsLib.html傳遞新聞

window.onload=function(){
            window.frames[0].postMessage('getcolor','http://lslib.com');
        }

接收新聞

test.com上面的頁(yè)面向lslib.com發(fā)送了新聞,那么在lslib.com頁(yè)面上如何接收新聞呢,監(jiān)聽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);

如許我們就可以接收任何窗口傳遞來(lái)的新聞了,為了安全起見,我們行使這時(shí)候的MessageEvent對(duì)象判斷了一下新聞源,MessageEvent是一個(gè)如許的東東

有幾個(gè)緊張屬性

1.data:顧名思義,是傳遞來(lái)的message

2.source:發(fā)送新聞的窗口對(duì)象

3.origin:發(fā)送新聞窗口的源(協(xié)議+主機(jī)+端口號(hào))

如許就可以接收跨域的新聞了,我們還可以發(fā)送新聞回去,方法類似

簡(jiǎn)單的demo

在這個(gè)例子中,左邊的div會(huì)根據(jù)右邊iframe內(nèi)div顏色轉(zhuǎn)變而轉(zhuǎn)變

<!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/&#106avascript">

        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/&#106avascript">
            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

在例子中頁(yè)面加載的時(shí)候主頁(yè)面向iframe發(fā)送&rsquo;getColor&lsquo; 請(qǐng)求(參數(shù)沒實(shí)際用處)

window.onload=function(){
            window.frames[0].postMessage('getcolor','http://lslib.com');
        }

 iframe接收新聞,并把當(dāng)前顏色發(fā)送給主頁(yè)面呢

window.addEventListener('message',function(e){
                if(e.source!=window.parent) return;
                var color=container.style.backgroundColor;
                window.parent.postMessage(color,'*');
            },false);

 主頁(yè)面接收新聞,更改本身div顏色

window.addEventListener('message',function(e){
            var color=e.data;
            document.getElementById('color').style.backgroundColor=color;
        },false);

 當(dāng)點(diǎn)擊iframe事觸發(fā)其變色方法,把最新顏色發(fā)送給主頁(yè)面

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,'*');
            }

主頁(yè)面照舊行使剛才監(jiān)聽message事件的程序處理自身變色

window.addEventListener('message',function(e){
            var color=e.data;
            document.getElementById('color').style.backgroundColor=color;
        },false);

最后

很簡(jiǎn)單的用法卻解決了大題目,據(jù)說Facebook已經(jīng)在使用了,而且這也是html5另一個(gè)API&mdash;&mdash;web workers傳遞新聞的方法,那么它的欣賞器兼容性怎么樣呢?所謂欣賞器兼容性幾乎變成了IE幾開始支持的題目了。。。不過好新聞是跟localStorage一樣,IE8+都支持了,只不過有些欣賞器的低版本(比如FireFox4.0)并不支持window.onmessage=function(){}這種寫法,所以我么最好使用事件綁定的寫法,為了兼容IE,也要判斷是否支持addEventListener。

以上就是本文的悉數(shù)內(nèi)容,盼望對(duì)大家的學(xué)習(xí)有所幫助,也盼望大家多多支持圖趣網(wǎng)。

[教程作者:Samaritans]
免責(zé)聲明:本站文章系圖趣網(wǎng)整理發(fā)布,如需轉(zhuǎn)載,請(qǐng)注明出處,素材資料僅供個(gè)人學(xué)習(xí)與參考,請(qǐng)勿用于商業(yè)用途!
本文地址:http://likemindfilms.com/tutorial/wd228.html
基于zepto的插件之移動(dòng)端無(wú)縫向上滾動(dòng)并上下觸摸滑動(dòng)實(shí)例代碼
HTML53D模型--百行代碼實(shí)現(xiàn)旋轉(zhuǎn)立體魔方實(shí)例
圖趣網(wǎng)微信
建議反饋
×