加载资源失败:net::ERR_CONNECTION_REST
Posted
技术标签:
【中文标题】加载资源失败:net::ERR_CONNECTION_REST【英文标题】:Failed to load resource: net:: ERR_CONNECTION_REST 【发布时间】:2018-10-10 12:15:19 【问题描述】:我需要使用 Ajax 网络调用从数据库中获取大量数据。 最多 20000 条记录 ajax 调用工作正常,但是当记录数超过 20k 时,它显示错误 “” 在控制台中。
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】:每条记录有多大?
我的第一个猜测是请求的大小。你使用什么样的服务器?如果它托管在 IIS 中,您应该检查 web.config 中的 maxAllowedContentLength。
【讨论】:
嗨 Rikard,每条记录包含 8 列。是的,我们托管在 IIS 中,我在 web.configfile 中添加了 maxAllowedContentLength = "1073741824" 只是为了澄清,是发布对象数据大还是来自服务器的响应?以上是关于加载资源失败:net::ERR_CONNECTION_REST的主要内容,如果未能解决你的问题,请参考以下文章