我正在通过 jQuery 的ajax
post 方法通过 web 方法加载选项卡内容数据,其中包含大约 200-300 条记录。并在控制台中出现以下错误:
错误:Sys.Net.WebServiceFailedException:Sys.Net.WebServiceFailedException:System.InvalidOperationException-- 使用 JSON JavaScriptSerializer 进行序列化或反序列化时出错。字符串的长度超过了 maxJsonLength 属性上设置的值。
像这样更改 Web.config 中属性的长度maxJsonLength
并没有帮助。
<configuration>
<system.web.extensions>
<scripting>
<webServices>
<jsonSerialization maxJsonLength="2147483644" />
</webServices>
</scripting>
</system.web.extensions>
</configuration>
谁能帮我解决这个问题?