본문 바로가기

Programming/JQuery

jQuery Ajax 에러 처리

jQuery Ajax 에러 처리

 

$.ajaxSetup({
   error:function(x,e){
      if(x.status==0){
      alert('네트워크를 체크해주세요.');
      }else if(x.status==404){
      alert('페이지를 찾을수없습니다.');
      }else if(x.status==500){
      alert('서버에러 발생하였습니다.');
      }else if(e=='parsererror'){
      alert('Error.\nParsing JSON Request failed.');
      }else if(e=='timeout'){
      alert('시간을 초과하였습니다.');
      }else {
      alert('알수없는 에러가 발생하였습니다.\n'+x.responseText);
      }
   }
});

 

$().ready(function(){
  $.ajaxSetup({
    error:function(x,e){
      if(x.status==0){
      alert('You are offline!!\n Please Check Your Network.');
      }else if(x.status==404){
      alert('Requested URL not found.');
      }else if(x.status==500){
      alert('Internel Server Error.');
      }else if(e=='parsererror'){
      alert('Error.\nParsing JSON Request failed.');
      }else if(e=='timeout'){
      alert('Request Time out.');
      }else {
      alert('Unknow Error.\n'+x.responseText);
      }
    }
  });
});

 

참조 : http://brain.dailyon.net/?p=353

'Programming > JQuery' 카테고리의 다른 글

jQuery Callback Functions  (0) 2012.04.19
jQuery Ajax memory leak  (0) 2012.04.05
jQuery Ajax 한글자료 넘김 처리 - jsp, java  (0) 2012.04.05
jQuery Ajax 사용  (0) 2012.04.05
셀렉터  (0) 2012.03.29