我假设您正在返回JSON?
您可以使用以下方法在web.config中调整JSON响应大小:
<configuration> <system.web.extensions> <scripting> <webServices> <jsonSerialization maxJsonLength="1000000" /> </webServices> </scripting> </system.web.extensions></configuration>
快速搜索,看起来默认大小为102400。
maxJsonLength可选属性。
配置JSON字符串的最大长度(最大UTF-8字符数)。
默认长度为102400。
资源



