- 什么是跨域
- JSONP
- proxy代理
- cors
- xdr
由于浏览器同源策略,凡是发送请求url的协议、域名、端口三者之间任意一与当前页面地址不同即为跨域。具体可以查看下表(来源)
JSONP
这种方式主要是通过动态插入一个script标签。浏览器对script的资源引用没有同源限制,同时资源加载到页面后会立即执行(没有阻塞的情况下)。
1 <script> 2 var _script = document.createElement('script'); 3 _script.type = "text/javascript"; 4 _script.src = "http://localhost:8888/jsonp?callback=f"; 5 document.head.appendChild(_script); 6 </script>
实际项目中JSONP通常用来获取json格式数据,这时前后端通常约定一个参数callback,该参数的值,就是处理返回数据的函数名称。
1 <!doctype html> 2 <html> 3 <head> 4 <Meta charset="utf-8"> 5 <Meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no"> 6 <title>jsonp_test</title> 7 8 <script> 9 var f = function(data){ 10 alert(data.name); 11 } 12 /*var xhr = new XMLHttpRequest(); 13 xhr.onload = function(){ 14 alert(xhr.responseText); 15 }; 16 xhr.open('POST','http://localhost:8888/cors',true); 17 xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded"); 18 xhr.send("f=json");*/ 19 </script> 20 21 <script> 22 23 _script.type = "text/javascript"; 24 _script.src = "http://localhost:8888/jsonp?callback=f"; 25 document.head.appendChild(_script); 26 </script> 27 </head>
1 var query = _url.query; 2 console.log(query); 3 var params = qs.parse(query); 4 console.log(params); 5 var f = ""; 6 7 f = params.callback; 8 9 res.writeHead(200,{"Content-Type": "text/javascript"}); 10 res.write(f + "({name:'hello world'})"); 11 res.end();
缺点:
1、这种方式无法发送post请求(这里)
2、另外要确定jsonp的请求是否失败并不容易,大多数框架的实现都是结合超时时间来判定。
Proxy代理
这种方式首先将请求发送给后台服务器,通过服务器来发送请求,然后将请求的结果传递给前端。
6 <title>proxy_test</title> var xhr = new XMLHttpRequest(); 13 xhr.onload = function(){ 14 alert(xhr.responseText); 15 }; 16 xhr.open('POST','http://localhost:8888/proxy?http://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer',true); 17 xhr.send("f=json"); 18 </script> 19 </head> 20 21 <body> 22 </body> 23 </html>
var proxyUrl = ""; 2 if (req.url.indexOf('?') > -1) { 3 proxyUrl = req.url.substr(req.url.indexOf('?') + 1); 4 console.log(proxyUrl); 5 } 6 if (req.method === 'GET') { 7 request.get(proxyUrl).pipe(res); 8 } else if (req.method === 'POST') { 9 var post = ''; //定义了一个post变量,用于暂存请求体的信息 10 11 req.on('data',255)">function(chunk){ 通过req的data事件监听函数,每当接受到请求体的数据,就累加到post变量中 12 post += chunk; 13 }); 14 15 req.on('end',255)">function(){ 在end事件触发后,通过querystring.parse将post解析为真正的POST请求格式,然后向客户端返回。 16 post = qs.parse(post); 17 request({ 18 method: 'POST',19 url: proxyUrl,128)">20 form: post 21 }).pipe(res); 22 }); 23 }
需要注意的是如果你代理的是https协议的请求,那么你的proxy首先需要信任该证书(尤其是自定义证书)或者忽略证书检查,否则你的请求无法成功。12306就提供了一个鲜活的例子。
还需要注意一点,对于同一请求浏览器通常会从缓存中读取数据,我们有时候不想从缓存中读取,所以会加一个preventCache参数,这个时候请求url变成:url?preventCache=12345567....;这本身没有什么问题,问题出在当使用某些前端框架(比如jquery)发送proxy代理请求时,请求url为proxy?url,同时设置preventCache:true,框架不能正确处理这个参数,结果发出去的请求变成proxy?url&preventCache=123456(正长应为proxy?url?preventCache=12356);后端截取后发送的请求为url&preventCache=123456,根本没有这个地址,所以你得不到正确结果。
CORS
这是现代浏览器支持跨域资源请求的一种方式。
当你使用XMLHttpRequest发送请求时,浏览器发现该请求不符合同源策略,会给该请求加一个请求头:Origin,后台进行一系列处理,如果确定接受请求则在返回结果中加入一个响应头:Access-Control-Allow-Origin;浏览器判断该相应头中是否包含Origin的值,如果有则浏览器会处理响应,我们就可以拿到响应数据,如果不包含浏览器直接驳回,这时我们无法拿到响应数据。
var f = function(data){ 10 alert(data.name); 11 }17 xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded"); 18 xhr.send("f=json"); 22 var _script = document.createElement('script'); 23 _script.type = "text/javascript"; 24 _script.src = "http://localhost:8888/jsonp?callback=f"; 25 document.head.appendChild(_script);27 </head> 28 29 <body> 30 </body> 31 </html>
if (req.headers.origin) { 2 3 res.writeHead(200,{ 4 "Content-Type": "text/html; charset=UTF-8",128)"> 5 "Access-Control-Allow-Origin":'http://localhost',128)"> 6 'Access-Control-Allow-Methods': 'GET,POST,OPTIONS',128)"> 7 'Access-Control-Allow-Headers': 'X-Requested-With,Content-Type' 8 }); 9 res.write('cors'); 10 res.end(); 11 }
如果我们把Access-Control-Allow-Origin去掉,浏览器会驳回响应,我们也就拿不到数据。
需要注意的一点是Preflighted Request的透明服务器验证机制支持开发人员使用自定义的头部、GET或POST之外的方法,以及不同类型的主题内容。总结如如:
1、非GET 、POST请求
2、POST请求的content-type不是常规的三个:application/x- www-form-urlencoded(使用 HTTP 的 POST 方法提交的表单)、multipart/form-data(同上,但主要用于表单提交时伴随文件上传的场合)、text/plain(纯文本)
3、POST请求的payload为text/html
4、设置自定义头部
OPTIONS请求头部中会包含以下头部:Origin、Access-Control-Request-Method、Access-Control-Request-Headers,发送这个请求后,服务器可以设置如下头部与浏览器沟通来判断是否允许这个请求。
Access-Control-Allow-Origin、Access-Control-Allow-Method、Access-Control-Allow-Headers
1 2 xhr.onload = 3 alert(xhr.responseText); 4 }; 5 xhr.open('POST',128)">6 xhr.setRequestHeader("Content-Type","text/html"); 7 xhr.send("f=json");
5 "Access-Control-Allow-Origin":'http://localhost',128)"> 6 'Access-Control-Allow-Methods': 'GET,OPTIONS',128)"> 7 'Access-Control-Allow-Headers': 'X-Requested-With,Content-Type'/**/ 11 }
如果你在调试状态,你会发现后台代码执行了两遍,说明发送了两次请求。注意一下我们的onload代码只执行了一次,所以说OPTIONS请求对程序来说是透明的,他的请求结果会被缓存起来。
如果我们修改一下后台代码,把Content-Type去掉,你会发现OPTIONS请求失败。
通过setRequestHeader('X-Request-With',null)可以避免浏览器发送OPTIONS请求。
根据我的测试,当使用cors发送跨域请求时失败时,后台是接收到了这次请求,后台可能也执行了数据查询操作,只是响应头部不合符要求,浏览器阻断了这次请求。
XDR
这是IE8、IE9提供的一种跨域解决方案,功能较弱只支持get跟post请求,而且对于协议不同的跨域是无能为力的,比如在http协议下发送https请求。看一下微软自己的例子就行
<!DOCTYPE html> 3 <html 4 body 5 h2>XDomainRequest</ 6 input type="text" id="tbURL" value="http://www.contoso.com/xdr.txt" style="width: 300px"><br 7 ="tbTO"="10000" 8 ="button" onclick="mytest()"="Get"> 9 ="stopdata()"="Stop"10 ="readdata()"="Read"11 12 div id="dResponse"></div13 script14 var xdr; 15 function readdata() 16 { 17 dRes = document.getElementById('dResponse); 18 dRes.innerText xdr.responseText; 19 alert("Content-type: " + xdr.contentType); 20 Length: xdr.responseText.length); 21 } 22 23 err() 24 25 XDR onerror26 27 28 timeo() 29 30 XDR ontimeout31 32 33 loadd() 34 35 XDR onload36 Got: xdr.responseText); 37 38 39 progres() 40 41 XDR onprogress42 43 44 45 stopdata() 46 47 xdr.abort(); 48 49 50 mytest() 51 52 url tbURL53 timeout tbTO54 if (window.XDomainRequest) 55 { 56 xdr = new XDomainRequest(); 57 (xdr) 58 { 59 xdr.onerror err; 60 xdr.ontimeout timeo; 61 xdr.onprogress progres; 62 xdr.onload loadd; 63 xdr.timeout tbTO.value; 64 xdr.open(get,tbURL.value); 65 xdr.send(); 66 } 67 else 68 69 alert(Failed to create70 71 } 72 73 74 alert(XDR doesn't exist75 76 77 78 79 >
以上就是我在实际项目中遇到的跨域请求资源的情况,有一种跨域需要特别注意就是在https协议下发送https请求,除了使用proxy代理外其他方法都无解,会被浏览器直接block掉。如果哪位道友知道解决方法,麻烦你告诉我一声。
最后附上完整的测试demo
iss中:
doctype html 2 3 head 4 Meta charset="utf-8" 5 name="viewport" content="initial-scale=1,user-scalable=no" 6 title>jsonp_test 8 9 /*10 11 }12 xhr XMLHttpRequest(); 13 xhr.onload (){ 14 alert(xhr.responseText); 15 }; xhr.open(POSThttp://localhost:8888/corstrue17 xhr.setRequestHeader(Content-Typeapplication/x-www-form-urlencodedaaaab xhr.send(f=json20 21 22 23 document.head.appendChild(_script);27 28 29 30 31 32 >
node-html
>proxy_test f (data){ alert(data.name); http://localhost:8888/proxy?https://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer18 19 21 22 >
node-server
1 var http = require('http'); 2 var url = require('url'); 3 var fs = require('fs'); 4 var qs = require('querystring'); 5 var request = require('request'); 6 7 http.createServer(function(req,res){ 8 var _url = url.parse(req.url); 9 if (_url.pathname === '/jsonp') { 10 var query = _url.query; 11 console.log(query); 12 var params = qs.parse(query); 13 console.log(params); 14 var f = ""; 15 16 f = params.callback; 17 18 res.writeHead(200,{"Content-Type": "text/javascript"}); 19 res.write(f + "({name:'hello world'})"); 20 res.end(); 21 } else if (_url.pathname === '/proxy') { 22 var proxyUrl = ""; 23 if (req.url.indexOf('?') > -1) { 24 proxyUrl = req.url.substr(req.url.indexOf('?') + 1); 25 console.log(proxyUrl); 26 } 27 if (req.method === 'GET') { 28 request.get(proxyUrl).pipe(res); 29 } else if (req.method === 'POST') { 30 var post = ''; //定义了一个post变量,用于暂存请求体的信息 31 32 req.on('data',function(chunk){ //通过req的data事件监听函数,每当接受到请求体的数据,就累加到post变量中 33 post += chunk; 34 }); 35 36 req.on('end',function(){ //在end事件触发后,通过querystring.parse将post解析为真正的POST请求格式,然后向客户端返回。 37 post = qs.parse(post); 38 request({ 39 method: 'POST',128)">40 url: proxyUrl,128)">41 form: post 42 }).pipe(res); 43 }); 44 } 45 } else if (_url.pathname === '/index') { 46 fs.readFile('./index.html',function(err,data) { 47 res.writeHead(200,{"Content-Type": "text/html; charset=UTF-8"}); 48 res.write(data); 49 res.end(); 50 }); 51 } else if (_url.pathname === '/cors') { 52 if (req.headers.origin) { 53 54 res.writeHead(200,128)">55 "Content-Type": "text/html; charset=UTF-8",128)">56 "Access-Control-Allow-Origin":'http://localhost',128)">57 'Access-Control-Allow-Methods': 'GET,128)">58 'Access-Control-Allow-Headers': 'X-Requested-With,Content-Type,aaaa'/**/ 59 }); 60 res.write('cors'); 61 res.end(); 62 } 63 } 64 65 }).listen(8888);