xmlhttprequest 级别 2 的最大文件上传大小是多少?

发布于 2024-12-29 10:11:46 字数 51 浏览 0 评论 0原文

HTML5 的 xmlhttprequest level 2 的最大文件上传大小是多少?

What is the maximum file upload size with xmlhttprequest level 2 with HTML5?

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

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

发布评论

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

评论(1

冷心人i 2025-01-05 10:11:46

XMLHttpRequest 规范没有提及对上传大小的任何限制。

实际上,上传请求受到以下因素的限制:

  1. 同时上传的数量: 流行浏览器允许多少个并发 AJAX (XmlHttpRequest) 请求?
  2. Web 服务器上配置的限制,例如。 Apache 上的 LimitRequestBody,< Nginx 上的 href="http://wiki.nginx.org/HttpCoreModule#client_max_body_size" rel="nofollow noreferrer">client_max_body_size
  3. 服务器端脚本环境的限制,例如 upload_max_filesizepost_max_size
  4. 内存限制(错误,客户端或服务器端)。

另请参阅:

The XMLHttpRequest specification does not mention any limits on the upload size.

In practise, upload requests are limited by:

  1. The number of simultaneous uploads: How many concurrent AJAX (XmlHttpRequest) requests are allowed in popular browsers?
  2. The configured limit on the web server, eg. LimitRequestBody on Apache, client_max_body_size on Nginx.
  3. The limits in the server-side scripting environment, e.g. upload_max_filesize and post_max_size in PHP.
  4. Memory limits (bugs, client-side or server-side).

See also:

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