无法加载资源:net :: ERR_CONNECTION_REST

时间:2018-04-30 11:45:19

标签: c# jquery asp.net web-services

我需要使用Ajax Web调用从数据库中获取大数据。 高达20000记录ajax调用工作正常,但当记录计数超过20k时,它显示错误 “无法加载资源:net :: ERR_CONNECTION_REST” 在控制台中。

DL方法没有错误。

这是ajax调用代码:

$.ajax({
            type: "POST",
            url: serviceUrl,
            async: false,
            data: JSON.stringify(Data);,
            contentType: "application/json", // content type sent to server
            dataType: "json", //Expected data format from server
            processdata: true,
            success: function (data) {//On Successfull service call
                bSuccess = true;
                //Success code here
            },
            error: function (jqXHR, textStatus, errorThrown) {
                //Error code here
            }
});

请帮我清除错误。

1 个答案:

答案 0 :(得分:0)

每条记录有多大?

我的第一个猜测是请求的大小。你使用什么样的服务器?如果它在IIS中托管,您应该检查web.config中的maxAllowedContentLength。