.error()jquery函数中的详细错误消息

时间:2012-08-29 16:16:04

标签: javascript jquery

我使用.error()作为.post()的回调。喜欢:

 $.post("url", function(data){})
 .error(function(){
          alert("some error");
 });

如果发生某些错误,我想查看详细的错误消息。我怎么能看到这个?

1 个答案:

答案 0 :(得分:3)

 $.post("url", function(data){})
 .error(function(event, jqXHR, ajaxSettings, thrownError){
     console.log(event, jqXHR, ajaxSettings, thrownError);
 });