我们的应用程序中有ajax调用,如下所示。每次左键单击都会调用它。但有时我们会得到12019错误。我们无法找到任何其他错误详细信息。我们将'xhr.status'改为12019。
$.ajax({
type : 'POST',
url : requestURI,
cache : false,
data : formData,
success : function(data) {
$('#centerContentModel').html(data);
ShowLayer();
},
error : function (xhr, errorType, thrownError) {
alert("Status : "+xhr.status+" :: StatusText : " + xhr.statusText +" :: ErrorType : " + errorType);
window.location.href = "/timeout.jsp";
}
有人对此有任何想法吗?
答案 0 :(得分:0)
我希望您在不同的端口号上使用相同的服务器用于其他应用程序。