码迷,mamicode.com
首页 > 其他好文 > 详细

跨域解决方案CORS使用方法

时间:2014-07-29 21:26:52      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   使用   os   io   cti   

CORS(Cross-Origin Resource Sharing), 目前CORS还处于w3c的草案,它定义了跨域访问时服务器和客户端之间如何通信。他的原理是通过定义HTTP头部的信息,来让客户端和服务器互相确认,从而决定是否相应本次请求。

兼容性: IE10+  chrome21+  firefox21+  safari5.1+  opera12.1+ (IE8, 9中使用XDomainRequest)

    详见 http://caniuse.com/cors , 可通过(new XMLHttpRequest).withCredentials !== undefined判断

客户端:

 1 function compatibleCORS(method, url) {
 2     var xhr = new XMLHttpRequest();
 3     if (xhr.withCredentials !== undefined) {
 4         xhr.open(method, url, true);
 5     } else if (typeof XDomainRequest !== "undefined") {
 6         //XDomainRequest是IE用于支持CORS请求的对象
 7         xhr = new XDomainRequest();
 8         xhr.open(method, url);
 9     } else {
10         xhr = null;
11     }
12     return xhr; 
13 }
14 
15 var xhr = compatibleCORS(‘GET‘, "your url");
16 if (!xhr) {
17     throw new Erorr("CORS不被支持");
18 }

服务端: 

  通过设置http响应头Access-Control-Allow-Origin: www.xxx.com(这里可以是*, 代表接受任意域名的跨域申请, 但为了安全策略, 一般情况下不要这样做)

  这样客户端的代码就能得到响应

 

跨域解决方案CORS使用方法,布布扣,bubuko.com

跨域解决方案CORS使用方法

标签:style   blog   http   color   使用   os   io   cti   

原文地址:http://www.cnblogs.com/yedeying/p/3876168.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!