注意:
此答案仅适用于Web服务,如果要从Controller方法返回JSON,请确保还阅读以下SO答案:https
所述MaxJsonLength属性不能是无限的,是整数属性默认为102400(10万)。
您可以
MaxJsonLength在web.config上设置属性:
<configuration> <system.web.extensions> <scripting><webServices> <jsonSerialization maxJsonLength="50000000"/></webServices> </scripting> </system.web.extensions></configuration>



