今回は、H5 window.postMessage とクロスドメイン、window.postMessage とクロスドメイン Notes を紹介します。実際のケースを見てみましょう。
前回の記事では、異なるドメインのページが互いのメソッドや属性にアクセスすることを防ぐブラウザーの同一オリジン ポリシーについて説明し、同一オリジン ポリシーのクロスドメイン問題を解決するために提案されたソリューションについて詳しく説明しました。 : サブドメイン プロキシ、JSONP、CORS。この記事では、HTML5 window.postMessage について詳しく説明します。postMessage API を使用すると、サードパーティの JavaScript コードが iframe にロードされた外部ドキュメントと通信することもできます。
HTML5 window.postMessage API
HTML5 window.postMessage は、安全なイベントベースのメッセージング API です。
postMessageメッセージを送信する
メッセージを送信するには、メッセージを送信する必要があるソース ウィンドウで postMessage メソッドを呼び出します。
ソースウィンドウ
ソースウィンドウは、グローバルウィンドウオブジェクトにすることも、次のタイプのウィンドウにすることもできます:
ドキュメントウィンドウのiframe:
var iframe = document.getElementById('my-iframe'); var win = iframe.documentWindow;
JavaScriptによって開かれるポップアップウィンドウ:
var win = window.open();
現在のドキュメント ウィンドウの親ウィンドウ:
var win = window.parent;
現在のドキュメントのウィンドウを開きます:
var win = window.opener();
ソース ウィンドウ オブジェクトを見つけたら、postMessage API を呼び出してターゲット ウィンドウにメッセージを送信できます:
``win.postMessage('Hello', 'ttp://jhssdemo.duapp.com/');"
postMessage 関数は 2 つのパラメータを受け取ります。最初のパラメータは送信されるメッセージであり、2 番目のパラメータはソース ウィンドウのソースです。
注: メッセージは、ターゲット ウィンドウのソースが postMessage 関数で渡されたソース パラメーター値と一致する場合にのみ受信できます。
postMessageメッセージを受信する
postMessageを通じてソースウィンドウによって以前に送信されたメッセージを受信したい場合は、ターゲットウィンドウにメッセージイベントを登録し、イベントリスニング関数をバインドするだけで、メッセージを取得できます関数パラメータで。
window.onload = function() { var text = document.getElementById('txt'); function receiveMsg(e) { console.log("Got a message!"); console.log("nMessage: " + e.data); console.log("nOrigin: " + e.origin); // console.log("Source: " + e.source); text.innerHTML = "Got a message!<br>" + "Message: " + e.data + "<br>Origin: " + e.origin; } if (window.addEventListener) { //为窗口注册message事件,并绑定监听函数 window.addEventListener('message', receiveMsg, false); }else { window.attachEvent('message', receiveMsg); } };
メッセージ イベント リスニング関数は、次の 3 つの属性を持つパラメーターである Event オブジェクト インスタンスを受け取ります。
data 送信された特定のメッセージ
origin 送信されたメッセージのソース
source window オブジェクトメッセージ ウィンドウの参照
説明
postMessage 関数の 2 番目のパラメーターを * に設定すると、クロスドメイン メッセージを送信するときにメッセージのソースの確認をスキップできます。
postMessage は文字列情報のみを送信できます。
例
ソースウィンドウ
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Html5 postMessage</title> <style> #otherWin { width: 600px; height: 400px; background-color: #cccccc; } </style> </head> <body> <button id="btn">open</button> <button id="send">send</button> <!-- 通过 iframe 嵌入子页面(接收消息目标窗口) --> <iframe src="http://jhssdemo.duapp.com/demo/h5_postmessage/win.html" id="otherWin"></iframe> <br/><br/> <input type="text" id="message"><input type="button" value="Send to child.com" id="sendMessage" /> <script> window.onload = function() { var btn = document.getElementById('btn'); var btn_send = document.getElementById('send'); var sendBtn = document.getElementById('sendMessage'); var win; btn.onclick = function() { //通过window.open打开接收消息目标窗口 win = window.open('http://jhssdemo.duapp.com/demo/h5_postmessage/win.html', 'popUp'); } btn_send.onclick = function() { // 通过 postMessage 向子窗口发送数据 win.postMessage('Hello', 'http://jhssdemo.duapp.com/'); } function sendIt(e){ // 通过 postMessage 向子窗口发送数据 document.getElementById("otherWin").contentWindow .postMessage( document.getElementById("message").value, "http://jhssdemo.duapp.com/"); } sendBtn.onclick = function(e) { sendIt(e); }; }; </script> </body> </html>
ターゲットウィンドウwin.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Html5 postMessage</title> <style> #txt { width: 500px; height: 300px; background-color: #cccccc; } </style> </head> <body> <h1>The New Window</h1> <p id="txt"></p> <script> window.onload = function() { var text = document.getElementById('txt'); //监听函数,接收一个参数--Event事件对象 function receiveMsg(e) { console.log("Got a message!"); console.log("nMessage: " + e.data); console.log("nOrigin: " + e.origin); text.innerHTML = "Got a message!<br>" + "Message: " + e.data + "<br>Origin: " + e.origin; } if (window.addEventListener) { //为window注册message事件并绑定监听函数 window.addEventListener('message', receiveMsg, false); }else { window.attachEvent('message', receiveMsg); } }; </script> </body> </html>
この記事の事例を読んだ後は、この方法を習得したと思います。その他の関連記事は PHP 中国語 Web サイトにあります。
推奨読書:
以上がH5 window.postMessage とクロスドメインの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。