我的愚蠢的问题道歉,但我需要你的帮助。 我需要得到有关内部响应信息AJAX
。
$.ajax({
type: "POST",
url: '/register',
data : registerRequestJSON,
contentType:"application/json",
success: function(data){
$("#register_area").text();// need to show success
},
error: function(err) {
$("#register_area").text("@text"); // @text = response error, it is will be errors: 324, 500, 404 or anythings else
}
});
如何使用响应主体? ( 文档Jquary.Ajax不是在momment工作)