提交包含 >100 个字段的表单比提交较小的表单慢
我们有一个包含大约 100 个字段的表单。提交它时不涉及 JavaScript,只是一个计时器,该计时器因
<button type="submit" id="apply-button" name="form[submit]" onclick="window.clearInterval(timer);"><span>Apply</span></button>
某些用户报告表单“停止”而停止,即。提交表单并显示结果页面最多需要 1 分钟。
提交包含大量字段的表单是任何浏览器中的已知问题吗?如果是,有没有工具可以测量所需时间?
We have a form which has ca 100 fields. There is no javascript involved in submitting it, just a timer that is stopped with
<button type="submit" id="apply-button" name="form[submit]" onclick="window.clearInterval(timer);"><span>Apply</span></button>
Some users report the form to "stall", ie. it takes up to 1 minute before the form is submitted and the result page shown.
Is submitting a form with a large number of fields a known problem in any browser? If yes, are there tools to measure the time it takes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
提交的每个字段都必须通过用户连接发送到服务器。
如果用户的上游连接速度较慢,则较大的表单将需要更长的时间。
Every field that gets submitted must be sent to the server through the user's connection.
If the user has a slow upstream connection, larger forms will take longer.