解决方法
我假设你正在返回
JSON?
您可以通过以下方式调整web.config中的JSON响应大小:
<configuration> <system.web.extensions> <scripting> <webServices> <jsonSerialization maxJsonLength="1000000" /> </webServices> </scripting> </system.web.extensions> </configuration>
maxJsonLength Optional attribute.
Configures the maximum length of the
JSON string (the maximum number of
UTF-8 characters).The default length is 102400.