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.
嘿,任何人都知道使用 jqueryserialize()函数的最大表单字段数,因为我的 from 动态添加字段多达 1000 个字段等等。但它只是序列化前 200(apx) 字段......
serialize()
请帮我。有什么解决方案..??
您的请求正文(Post-Data、GET-Query)的长度是有限的。没有通用标准,但例如 Suoshin 倾向于将其限制为 2 或 4 kb。因此,无论浏览器发送什么,200 可能只是您的服务器收到的限制。
原因是 DDoS 防护:由于 Post-data 被转换为数组,发送数千次的巨大请求可能会填满服务器内存并导致服务器停机。