ajax 設定Access-Control-Allow-Origin實現跨域訪問

來源:互聯網
上載者:User

標籤:

ajax跨域訪問是一個老問題了,解決方案很多,比較常用的是JSONP方法,JSONP方法是一種非官方方法,而且這種方法只支援GET方式,不如POST方式安全。

即使使用jquery的jsonp方法,type設為POST,也會自動變為GET。

官方問題說明:

“script”: Evaluates the response as JavaScript and returns it as plain text. Disables caching by appending a query string parameter, “_=[TIMESTAMP]“, to the URL unless the cache option is set to true.Note: This will turn POSTs into GETs for remote-domain requests.

如果跨域使用POST方式,可以使用建立一個隱藏的iframe來實現,與ajax上傳圖片原理一樣,但這樣會比較麻煩。

因此,通過設定Access-Control-Allow-Origin來實現跨域訪問比較簡單。

例如:用戶端的網域名稱是www.client.com,而請求的網域名稱是www.server.com

如果直接使用ajax訪問,會有以下錯誤

XMLHttpRequest cannot load http://www.server.com/server.php. No ‘Access-Control-Allow-Origin‘ header is present on the requested resource.Origin ‘http://www.client.com‘ is therefore not allowed access.

在被請求的Response header中加入

 

    // 指定允許其他網域名稱訪問      header(‘Access-Control-Allow-Origin:*‘);      // 響應類型      header(‘Access-Control-Allow-Methods:POST‘);      // 回應標頭設定      header(‘Access-Control-Allow-Headers:x-requested-with,content-type‘);  

 

就可以實現ajax POST跨域訪問了。

代碼如下:

client.html 路徑:http://www.client.com/client.html

 

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">      <html>       <head>        <meta http-equiv="content-type" content="text/html;charset=utf-8">        <title> 跨域測試 </title>        <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>       </head>             <body>          <div id="show"></div>          <script type="text/javascript">          $.post("http://www.server.com/server.php",{name:"fdipzone",gender:"male"})            .done(function(data){              document.getElementById("show").innerHTML = data.name + ‘ ‘ + data.gender;            });          </script>       </body>      </html>  

 

server.php 路徑:http://www.server.com/server.php

 

    <?php      $ret = array(          ‘name‘ => isset($_POST[‘name‘])? $_POST[‘name‘] : ‘‘,          ‘gender‘ => isset($_POST[‘gender‘])? $_POST[‘gender‘] : ‘‘      );            header(‘content-type:application:json;charset=utf8‘);      header(‘Access-Control-Allow-Origin:*‘);      header(‘Access-Control-Allow-Methods:POST‘);      header(‘Access-Control-Allow-Headers:x-requested-with,content-type‘);            echo json_encode($ret);      ?>  

 

Access-Control-Allow-Origin:* 表示允許任何網域名稱跨域訪問

如果需要指定某網域名稱才允許跨域訪問,只需把Access-Control-Allow-Origin:*改為Access-Control-Allow-Origin:允許的網域名

例如:header(‘Access-Control-Allow-Origin:http://www.client.com‘);


如果需要設定多個網域名稱允許訪問,這裡需要用php處理一下

例如允許 www.client.com 與 www.client2.com 可以跨域訪問

server.php 修改為

    <?php      $ret = array(          ‘name‘ => isset($_POST[‘name‘])? $_POST[‘name‘] : ‘‘,          ‘gender‘ => isset($_POST[‘gender‘])? $_POST[‘gender‘] : ‘‘      );            header(‘content-type:application:json;charset=utf8‘);            $origin = isset($_SERVER[‘HTTP_ORIGIN‘])? $_SERVER[‘HTTP_ORIGIN‘] : ‘‘;            $allow_origin = array(          ‘http://www.client.com‘,          ‘http://www.client2.com‘      );            if(in_array($origin, $allow_origin)){          header(‘Access-Control-Allow-Origin:‘.$origin);          header(‘Access-Control-Allow-Methods:POST‘);          header(‘Access-Control-Allow-Headers:x-requested-with,content-type‘);      }            echo json_encode($ret);      ?>  

轉載:http://blog.csdn.net/fdipzone/article/details/46390573

 

ajax 設定Access-Control-Allow-Origin實現跨域訪問

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.