MaxJSONlength 有什么用?

发布于 2024-11-07 07:26:19 字数 244 浏览 1 评论 0原文

所以我最近在我的MVC项目中遇到了一个问题。当请求 JSON 响应时,我得到的只是一个空字符串。将 MaxJSONlength 设置为更大的值解决了这个问题,但我有点不确定它有什么用?是为了保护您的服务器/客户端免于发送/接收过多数据吗?是因为序列化器需要知道对象可能有多大吗?谷歌和 MSDN 都没有这些问题的答案。

限制物体的大小对我来说有点……奇怪,但我的想法可能是严重错误的。

我希望有人能为我解决这个问题,

提前致谢

So I recently had a problem in my MVC project. When asking for a JSON response, all I got was an empty string. Setting the MaxJSONlength to a bigger value solved this problem, but I'm a bit unsure as to what it's good for? Is it to protect your server/clients from sending/receiving too much data? Is it Because the serializer needs to know how large an object might be? Neither google nor MSDN had the answers for these questions.

It feels a bit... strange to me to limit an object's size, but I'm probably gravely mistaken in that thought.

I hope someone can clear this up for me,

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

×眷恋的温暖 2024-11-14 07:26:19

Unicode 字符串 默认限制为 4MB 是为 JavaScriptSerializer 定义的。 JSON 是一种有线格式,通过网络发送大型数据集可能会损害应用程序的性能。所以这个限制就像一个闹钟,你可以在早上关掉它并继续睡觉,但你有上班迟到的风险。

There is a 4MB of Unicode string default limit that was defined for the JavaScriptSerializer. JSON is a wire format and sending large datasets over networks might hurt the performance of the application. So this limit is like an alarm that you can turn off in the morning and continue sleeping but there is a risk you will be late for work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文