发送 JSON 到 ASP.NET MVC 操作的最大长度

Max length sending JSON to an ASP.NET MVC Action

当我尝试发送超过 400 条记录的列表时(每条记录的长度不会超过 900 个字符)。将 maxJsonLength 属性 设置为其最大值后 web.config 仍然没有收到任何错误。 当我尝试发送少于 30 条记录的列表时。它完美运行。

<scripting>
  <webServices>
    <jsonSerialization maxJsonLength="50000000">
    </jsonSerialization>
  </webServices>
</scripting