解决MVC中JSON字符长度超出限制的异常
解决方法如下:
<configuration>
<system.web.extensions>
<scripting>
<webServices>
<jsonSerialization maxJsonLength="2147483644"/>
</webServices>
</scripting>
</system.web.extensions>
</configuration>
引用:http://*.com/questions/4155014/json-asp-net-mvc-maxjsonlength-exception