使用HTML5中postMessage實現Ajax中的POST跨域問題

HTML5中提供了在網頁文檔之間相互接收與發送信息的功能。使用這個功能,只要獲取到網頁所在窗口對象的實例,不單單同源(域+端口號)的web網頁之間能夠互相通訊,甚至能夠實現跨域通訊。javascript

瀏覽器支持程度:IE8+,firefox4+,chrome8+ opera10+php

1. 首先,要想接收從其餘的窗口發過來的消息,就必須對窗口對象的message事件進行監聽,以下代碼:html

window.addEventListener(「message」, function(){},false);

2. 其次,須要使用window對象的postMessage方法向其餘窗口發送消息,該方法定義以下所示:java

otherWindow.postMessage(message, targetOrigin);

該方法使用2個參數,第一個參數爲所發送的消息文本,但也能夠是任何javascript對象,第二個參數是接收消息的對象窗口的url地址(比 如:http:127.0.0.1:8080/) , 可是咱們也能夠在url地址字符串中使用通配符」*」, 指定所有的域下,可是咱們仍是建議使用特定的域名下,otherWindow爲要發送窗口對象的引用。web

Demo演示:ajax

假如如今我在hosts文件下 ,綁定2 個域名以下:chrome

127.0.0.1       abc.example.com

127.0.0.1        longen.example.com

如今假如在abc.example.com域下有一個abc.html頁面,在longen.example.com域下有def.html頁面,如今我是但願這2個不一樣域名下的頁面能互相通訊,abc.html代碼以下:json

<form>  
      <p>  
        <label for="message" style="color:red;font-size:24px;">給iframe子窗口發一個信息:</label>  
        <input type="text" name="message" value="send" id="message" />  
        <input type="submit" value="submit" id="submit"/>  
      </p>  
</form>  
<h4>目標iframe傳來的信息:</h4>  
<p id="test">暫無信息</p> 

 <iframe id="iframe"  
    src="http://longen.example.com/webSocket/def.html" style="display:none"></iframe>

JS代碼以下:跨域

var win = document.getElementById("iframe").contentWindow;

document.getElementById("submit").onclick = function(e){
    e.preventDefault();
    win.postMessage(document.getElementById("message").value,"http://longen.example.com"); 
}  

window.addEventListener("message",function(e){
     e.preventDefault();
     document.getElementById("test").innerHTML = "從" + e.origin + "那裏傳過來的消息:\n" + e.data;
},false);

Def.html代碼以下:瀏覽器

HTML代碼:

<form>  
      <p>  
        <label for="message">給父窗口abc.html發個信息:</label>  
        <input type="text" name="message" value="send" id="message" />  
        <input type="submit" />  
      </p>  
 </form>  
 <p id="test2">暫無信息。</p>

JS代碼以下:

var parentwin = window.parent; 
window.addEventListener("message",function(e){
       document.getElementById("test2").innerHTML = "從父窗口傳來的域" +e.origin + ",和內容數據:" + e.data;  
       parentwin.postMessage('HI!你給我發了"<span>'+e.data+'"</span>。',"http://abc.example.com");
},false);

當我點擊abc.html頁面後,能夠看到效果以下,從def.html返回內容了。以下:

咱們須要知道以下幾條信息:

  1. 經過對window對象的message事件進行監聽,能夠接收消息。
  2. 經過訪問message事件的origin屬性,能夠獲取消息的發送源。
  3. 經過訪問message事件的data屬性,能夠取得消息內容。
  4. 使用postMessage方法發送消息。
  5. 經過訪問message事件的source屬性,能夠獲取消息發送源的窗口對象(準確的說,應該是窗口的代理對象)。

有了上面的基本知識點,咱們能夠延伸爲實現ajax POST跨域的問題。

二:使用postMessage 知識點解決 ajax中POST跨域問題。

原理:原理也很簡單,假如咱們的域名abc.example.com下的abc.html頁面須要發ajax請求(跨域,域名爲 longen.example.com)下,那麼咱們仍是先跨頁面文檔的形式,和上面同樣,咱們能夠如今longen.example.com下 創建一個頁面,好比叫def.html. 那麼咱們如今仍是在 abc.html 頁面嵌入一個隱藏域iframe src路徑指向longen.example.com域下def,html頁面。過程仍是和跨文檔相似,只是如今在def.html頁面中 在window.onmessage 事件內寫ajax請求便可,以下代碼:

abc.example.com下的abc.html頁面以下:

html代碼和上面同樣,下面是JS代碼:

var win = document.getElementById("iframe").contentWindow;

document.getElementById("submit").onclick = function(e){
      e.preventDefault();
      win.postMessage(document.getElementById("message").value,"http://longen.example.com/"); 
}  

window.addEventListener("message",function(e){
    e.preventDefault();
    alert(typeof e.data)
    var json = JSON.parse(e.data);
     console.log(json);
    alert(json.url)
},false);

def.html代碼以下:

JS代碼以下:

//獲取跨域數據  
window.onmessage = function(e){  
     $.ajax({
          url: 'http://longen.example.com/webSocket/test.php',
          type:'POST',
          dataType:'text',
          //data: {msg:e.data},
          success: function(res) {
               var parentwin = window.parent;  
               parentwin.postMessage(res,"http://abc.example.com");//跨域發送數據  
          }
      });
 };

test.php代碼以下:

<?php 
    $data=array(  
     url =>1,
      name =>'2',
      'xx-xx'=>"xx"
 );
 echo json_encode($data);
?>

如上實現方式 就能夠實現ajax post跨域了。

相關文章
相關標籤/搜索