我有这样的ajax请求:
$.ajax({
url: "/Controller/DoSomething/",
data: { status:status
},
type: "post",
dataType: "json",
success: function (XMLHttpRequest ) {
},
error: function(XMLHttpRequest, textStatus, errorThrown){
}
});
当服务器出现故障时,我在Chrome控制台上收到此错误:
POST http://localhost:#####/Controller/DoSomething/ 净:: ERR_CONNECTION_REFUSED
调试XMLHttpRequest对象我找到了一个成员statusText: "error"
第二个参数"textStatus"
:值"错误"
第三个参数"errorThrown"
:具有空值
responseText
成员也是空的
但是我想得到控制台的错误信息,是否有办法或其他有详细信息的成员?