首页 > 代码库 > JavaScriptConvert.SerializeObject转换出错
JavaScriptConvert.SerializeObject转换出错
The length of the string exceeds the value set on the maxJsonLength property(字符串的长度超过maxjsonlength上设置的值)
webservice从后端获取数据时,系统提示“The length of the string exceeds the value set on the maxJsonLength property”
解决方案:
1、Json数据的长度超过了默认的102400!
2、若数据量过大,则会出现如上错误信息。
3、只需在Web.config中修改maxJsonLength即可
<system.web.extensions>
<scripting>
<webServices>
<jsonSerialization maxJsonLength="10240000">
</jsonSerialization>
</webServices>
</scripting>
</system.web.extensions>
转载:http://www.cnblogs.com/advocate/archive/2010/06/05/1752388.html
JavaScriptConvert.SerializeObject转换出错
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。