
注意:
此答案仅适用于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>
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)