首页 > 代码库 > jQuery Ajax 请求报长度过长的错误:Error during serialization or deserialization using the JSON JavaScriptSerializer
jQuery Ajax 请求报长度过长的错误:Error during serialization or deserialization using the JSON JavaScriptSerializer
{"Message":"Error during serialization or deserialization using the JSON JavaScriptSerializer. The length of the string exceeds the value set
在web项目的web.config <configuration>节下增加
<system.web.extensions>
<scripting>
<webServices>
<jsonSerialization maxJsonLength="250000">
</jsonSerialization>
</webServices>
</scripting>
</system.web.extensions>
另外如果 web项目 请求WCF服务长度过长报错的话
在web.config <system.web>节下增加
<httpRuntime maxRequestLength="250000"/>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。