xmlhttprequest 级别 2 的最大文件上传大小是多少?
HTML5 的 xmlhttprequest level 2 的最大文件上传大小是多少?
What is the maximum file upload size with xmlhttprequest level 2 with HTML5?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XMLHttpRequest 规范没有提及对上传大小的任何限制。
实际上,上传请求受到以下因素的限制:
LimitRequestBody
,< Nginx 上的 href="http://wiki.nginx.org/HttpCoreModule#client_max_body_size" rel="nofollow noreferrer">client_max_body_size
。upload_max_filesize
和post_max_size
。另请参阅:
The XMLHttpRequest specification does not mention any limits on the upload size.
In practise, upload requests are limited by:
LimitRequestBody
on Apache,client_max_body_size
on Nginx.upload_max_filesize
andpost_max_size
in PHP.See also: