使用 HTML5 的 xmlhttprequest 级别 2 的最大文件上传大小是多少?
What is the maximum file upload size with xmlhttprequest level 2 with HTML5?
XMLHttpRequest 规范 没有提到对上传大小的任何限制.
The XMLHttpRequest specification does not mention any limits on the upload size.
实际上,上传请求受限于:
In practise, upload requests are limited by:
LimitRequestBody
在 Apache 上,client_max_body_size
.upload_max_filesize
和 post_max_size
在 PHP 中.LimitRequestBody
on Apache, client_max_body_size
on Nginx.upload_max_filesize
and post_max_size
in PHP.另见:
这篇关于xmlhttprequest 级别 2 的最大文件上传大小是多少?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!