Nasıl ajax başarısız veya sunucu tarafı geri bir şey yankı yok eğer başarılı olup olmadığını biliyor musunuz?
$.ajax(error:..,success:..)
Benim test bu istisna ile bir araya geldi:
uncaught exception: [Exception... "Component returned failure code: 0x80040111 (NS_ERROR_NOT_AVAILABLE) [nsIXMLHttpRequest.statusText]" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: http://localhost/script/tab.js :: anonymous :: line 69" data: no]
Sunucu tarafı kodu:
$id = process();
Ve test etmek amacıyla, I-exit() işleminde () vardır;
Olduğunu bu istisnanın sebebi? Eğer öyleyse, neden?
EDIT I looked over to the line that cause exception,it's the error handling function of $.ajax()
error:function(XMLHttpRequest, textStatus, errorThrown){
alert(XMLHttpRequest.statusText);alert(textStatus);alert(errorThrown);
}
Burada yanlış bir şey?