処理タイムアウト-Ajaxの5
3731 ワード
前編はタイムアウトしたかどうかをチェックするだけで、タイムアウト後は何も処理しません.ここでタイムアウトするとfailureの2番目のパラメータmsgに「request timeout」として割り当てられます.これにより,利用者は1回のHTTPリクエストの詳細を明確に知ることができる.実現の細部は比較的に奇妙で、ゆっくりと体得します.ここでtimeoutの効果はJQuery,Extと同じです.次のように
フルソース
関連:
ajax_05.zip
https://github.com/snandy/io
Ajax.text('../servlet/Ajax',{
timeout : 2000,
success : function(result){},
failure : function(xhr,msg){
alert(msg);
}
});
フルソース
Ajax =
function(){
function request(url,opt){
function fn(){}
opt = opt || {};
var async = opt.async !== false,
method = opt.method || 'GET',
type = opt.type || 'text',
encode = opt.encode || 'UTF-8',
timeout = opt.timeout || 0,
data = opt.data || null,
success = opt.success || fn,
failure = opt.failure || fn;
method = method.toUpperCase();
if(data && typeof data == 'object'){
data = _serialize(data);
}
if(method == 'GET' && data){
url += (url.indexOf('?') == -1 ? '?' : '&') + data;
data = null;
}
var xhr = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject('Microsoft.XMLHTTP');
if(!xhr){return;}
var isTimeout = false, timer;
if(timeout>0){
timer = setTimeout(function(){
xhr.abort();
isTimeout = true;
},timeout);
}
xhr.onreadystatechange = function(){
if (xhr.readyState == 4 && !isTimeout){
_onStateChange(xhr, type, success, failure);
clearTimeout(timer);
}else{}
};
xhr.open(method,url,async);
if(method == 'POST'){
xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded;charset=' + encode);
}
xhr.send(data);
return xhr;
}
function _serialize(obj){
var a = [];
for(var k in obj){
var val = obj[k];
if(val.constructor == Array){
for(var i=0,len=val.length;i<len;i++){
a.push(k + '=' + encodeURIComponent(val[i]));
}
}else{
a.push(k + '=' + encodeURIComponent(val));
}
}
return a.join('&');
}
function _onStateChange(xhr,type,success,failure){
var s = xhr.status, result;
if(s>= 200 && s < 300){
switch(type){
case 'text':
result = xhr.responseText;
break;
case 'json':
result = function(str){
return (new Function('return ' + str))();
}(xhr.responseText);
break;
case 'xml':
result = xhr.responseXML;
break;
}
success(result);
}else if(s===0){
failure(xhr,'request timeout');
}else{
failure(xhr,xhr.status);
}
xhr = null;
}
return (function(){
var Ajax = {request:request}, types = ['text','json','xml'];
for(var i=0,len=types.length;i<len;i++){
Ajax[types[i]] = function(i){
return function(url,opt){
opt = opt || {};
opt.type = types[i];
return request(url,opt);
}
}(i);
}
return Ajax;
})();
}();
関連:
ajax_05.zip
https://github.com/snandy/io