标签:浏览器 toc choice 而不是 自动 定向 ble component 资源
原生xhr对象存在较多的兼容性,IE6及之前版本使用ActiveXObject对象来创建,IE7以后使用兼容版本的MSXML2.XMLHttp、MSXML2.XMLHttp3.0、MSXML2.XMLHttp6.0.
ie7之前版本
1 function createXHR() { 2 if (typeof arguments.callee.activeXString !== ‘string‘) { 3 var versions = [‘MSXML2.XMLHttp.6.0‘, ‘MSXML2.XMLHttp.3.0‘, ‘MSXML2.XMLHttp‘]; 4 for (var i = 0,len = versions.length;i < len;i++) { 5 try { 6 var xhr = new ActiveXOject(versions[i]); 7 arguments.callee.activeXString = versions[i]; 8 } catch (ex) { 9 10 } 11 } 12 } 13 return new ActiveXOject(arguments.callee.activeXString); 14 }
ie7、FIreFox、Opera、Chrome及Safari都支持之原生XHR对象
1 function createXHR() { 2 if (typeof XMLHttpRequest !== ‘undefined‘) { 3 return new XMLHttpRequest(); 4 } else if (typeof ActiveXObject !== ‘undefined‘) { 5 if (typeof arguments.callee.activeXString !== ‘string‘) { 6 var versions = [‘MSXML2.XMLHttp.6.0‘, ‘MSXML2.XMLHttp.3.0‘, ‘MSXML2.XMLHttp‘]; 7 for (var i = 0,len = versions.length;i < len;i++) { 8 try { 9 var xhr = new ActiveXOject(versions[i]); 10 arguments.callee.activeXString = versions[i]; 11 return xhr; 12 } catch (ex) { 13 continue; 14 } 15 } 16 } 17 return new ActiveXObject(arguments.callee.activeXString); 18 } else { 19 throw new Error("no xhr object available"); 20 } 21 }
XHR对象用法
1、调用open,接受三个参数:请求类型,请求链接,请求是否异步
xhr.open(‘get‘, ‘test.action‘, false);
2、调用send,发送特定数据,如果没有特定数据,也必须传入null,某些浏览器是会检测改参数
xhr.send(null)
3、服务器响应后,响应后的数据会自动填充XHR对象的属性
responseText:响应主体被返回的文本
responseXML:如果响应内容类型是‘text/xml‘或‘application/xml‘,这个属性中将包含着响应数据的XML DOM文档
status: 响应的HTTP状态
statusText: http状态说明
我们一般使用是status状态码来检测状态。
1 xhr.onreadystatechange = function() { 2 if (xhr.readyState == 4) { 3 if ((xhr.status >= 200 && xhr.status < 300) || xhr.status == 304) { 4 console.log(xhr.statusText); 5 } else { 6 console.log(‘unsuccessful‘); 7 } 8 } 9 };
4、检测readyState属性
上面没有检测onreadystatechange事件,属于同步请求,我们大部分还是需要使用异步请求,所以我们可以使用上面的函数来监听readyState的每次变化。
0未初始化,尚未调用open;
1启动,调用open,尚未调用send;
2发送,调用send,尚未接受响应;
3接受,已接受部分数据;
4完成,接受全部数据。
每一次的readyState的变化都会触发readyStatechange事件,故而我们可以用过readystate来检测不同阶段。设置onreadystatechange事件必须在open之前。
1 var xhr = new createXHR(); 2 xhr.onreadystatechange = function(){ 3 if(xhr.readyState == 4){ 4 if((xhr.status >= 200 && xhr.status < 300) || xhr.status == 304){ 5 console.log(xhr.statusText); 6 }else{ 7 console.log("Request was unsuccessful:" + xhr.status); 8 } 9 } 10 }; 11 xhr.open("get","example.php",true); 12 xhr.send(null);
http头部信息
默认情况浏览器在发送XHR请求同时,发送很多头信息
Accept: 浏览器能处理的内容类型
Accept-Charset:浏览器能够显示的字符集
Accept-Encoding:浏览器能处理的压缩编码
Accept-Language:浏览器当前设置的语言
Connection:浏览器与服务器之间连接的类型
Cookie:当前页面设置的任何Cookie
Host:发送请求页面所在的域
Referer:发送请求页面所在的域
User-Agent:浏览器所有代理用户字符串
1、设置自定义头信息,setRequestHeader方法,参数为键值对,不过必须在open之后send之前
2、获取头部自定义信息,getResponseHeader方法,参数为字符串。
GET请求
1、get请求参数url的查询字段必须经过正确的编码才行。使用encodeURIComponent进行编码,不能用用encodeURI,这两编码范围不一样。
1 function addURLParam (url,name,value) { 2 if (url && name && value) { 3 url += (url.indexOf("?") == -1 ? "?" : "&"); 4 url += encodeURIComponent(name) + "=" + encodeURIComponent(value); 5 } 6 return url; 7 }
2、post请求
默认服务器对post请求和提交表单请求并不会一视同仁,必须用程序来读取发送过来的原始数据,从中去有用部分。可以通过设置Content-Type为application/x-www-form-urlencoded来模拟表单。
1 function submitData(){ 2 var xhr = createXHR(); 3 xhr.onreadystatechange = function (event){ 4 if(xhr.readyState == 4){ 5 if((xhr.status >= 200 && xhr.status < 300)||xhr.status == 304){ 6 alert(xhr.responseText); 7 }else{ 8 alert("Request was unsuccessful:"+ xhr.status); 9 } 10 } 11 }; 12 xhr.open("post","postexample.php",true); 13 xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded"); 14 var form = document.getElementById("user-info"); 15 xhr.send(serialize(form)); 16 }
浏览器差异
1、超时设置
IE8为XHR对象添加了一个timeout属性,表示请求等待响应多少毫秒之后终止。
1 var xhr = createXHR(); 2 xhr.onreadystatechange = function(event){ 3 try{ 4 if(xhr.readyState == 4){ 5 if((xhr.status >= 200 && xhr.status < 300) || xhr.status == 304){ 6 alert(xhr.responseText); 7 }else{ 8 alert("Request was unsuccessful:"+ xhr.status); 9 } 10 } 11 }catch (ex){ 12 //假设由ontimeout事件处理程序处理 13 } 14 }; 15 xhr.open("get","timeout.php",true); 16 xhr.timeout = 1000; 17 xhr.ontimeout = function(){ 18 alert("Request did not not return in a second."); 19 }; 20 xhr.send(null);
还有一些onload、progress事件,可以通过这两事件做一些特殊的事情。
附上自己写的xhr地址:https://github.com/schacker/xhr
附上status各种状态码
标签:浏览器 toc choice 而不是 自动 定向 ble component 资源
原文地址:http://www.cnblogs.com/ACMxike20111726/p/6194692.html