Jquery.Form プラグインにはエラー処理機能がないようで、非常にイライラします。ドキュメントには $.ajax オプションを使用できると記載されていますが、特に 500 および 400 シリーズでサーバーがエラーを返した場合、「エラー」オプションを使用することはできません。このプラグインはサーバーからのエラーをまったく処理できないのでしょうか、それともバグなどでしょうか? このプラグインでエラー (400、500 など) を処理する方法を教えてください。私はあなたの助けが必要です...私が欲しいのは簡単なエラー処理だけです...ありがとう。
$("#uploadingImg").hide();
var options = {//Define ajax options
type: "post",
target: "#responsePanel",
beforeSend: function(){
$("#uploadingImg").show();
},
complete: function(xhr, textStatus){
$("#uploadingImg").hide();
},
success: function(response, statusString, xhr, $form){
// I know what to do here since this option works fine
},
error: function(response, status, err){
// This option doesn't catch any of the error below,
// everything is always 'OK' a.k.a 200
if(response.status == 400){
console.log("Sorry, this is bad request!");
}
if(response.status == 601){
sessionTimedOut();
}
}
}
$("#polygonUploadForm").submit(function(){
$(this).ajaxSubmit(options); // Using the jquery.form plugin
return false;
});