Access-Control-Allow-Origin:ajax 跨域訪問

來源:互聯網
上載者:User

標籤:

在使用jquery的$.ajax跨域訪問的時候,如用戶端網域名稱是www.test.com,而伺服器端是www.test2.com,在用戶端通過ajax訪問伺服器端的資源將會報跨域錯誤:

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

ajax跨域訪問的解決方案很多,很多人推薦JSONP方法,這種方法只支援GET方式,不如POST方式安全。有興趣的可以自行搜尋,這裡講另外一種方法。

這時候只要在被請求的回應標頭中加入下面語句:

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

就可以實現跨域請求了。

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

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

eg:header(‘Access-Control-Allow-Origin:http://www.test.com‘);

 

Access-Control-Allow-Origin:ajax 跨域訪問

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.