提交包含 >100 个字段的表单比提交较小的表单慢

发布于 2024-12-15 05:09:54 字数 337 浏览 3 评论 0原文

我们有一个包含大约 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 技术交流群。

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

发布评论

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

评论(1

愛放△進行李 2024-12-22 05:09:54

提交的每个字段都必须通过用户连接发送到服务器。

如果用户的上游连接速度较慢,则较大的表单将需要更长的时间。

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.

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