我们在应用程序中有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";
    }

有人对此有任何想法吗?

最佳答案

我认为您在不同端口号上将同一服务器用于其他应用程序。

关于javascript - Ajax调用-12019错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40105526/

10-10 13:00