gpt4 book ai didi

c# - 增加 ASP.NET 页面方法的最大响应大小

转载 作者:可可西里 更新时间:2023-11-01 02:00:49 25 4
gpt4 key购买 nike

我在 ASPX 页面上有一个页面方法,它被 jQuery AJAX POST 请求调用。当我尝试返回太多结果时,请求失败。是否有可用于增加默认最大响应大小的 web.config 设置或类属性?

最佳答案

我假设你返回的是 JSON?

您可以在 web.config 中调整 JSON 响应大小:

<configuration>
<system.web.extensions>
<scripting>
<webServices>
<jsonSerialization maxJsonLength="1000000" />
</webServices>
</scripting>
</system.web.extensions>
</configuration>

快速搜索一下,默认大小似乎是 102400。

maxJsonLength Optional attribute.

Configures the maximum length of the JSON string (the maximum number of UTF-8 characters).

The default length is 102400.

Source

关于c# - 增加 ASP.NET 页面方法的最大响应大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5902540/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com