Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,我有一个包含大量的表单,<input type="hidden" name="allsame">每个表单都有不同且唯一的值但具有相同的名称(“allsame”)。
<input type="hidden" name="allsame">
提交表单后,似乎缺少许多“完全相同”的输入,我可以收到其中的一些,但不是全部。
所以我想知道Java / Tomcat是否限制了表单下的输入字段数量?
如果是,我该如何增加它并增加到哪个数字?
a中没有INPUT字段限制FORM,唯一的限制是请求的大小。
INPUT
FORM
得到
对于GET看起来限制在 255B 和 8KB 之间的操作,具体取决于服务器配置和浏览器,请参阅此答案。
GET
邮政
对于 POST 操作,它取决于服务器配置,Tomcat 的默认值为 2MB,有关更多信息,请参阅此答案。