如何在服务器接收文件之前检查文件的大小?

发布于 2024-10-13 02:28:15 字数 180 浏览 2 评论 0原文

我在上传文件时遇到问题:

为了避免服务器过载,我会在服务器接收之前检查文件的大小强>它。如果我没记错的话,按下包含文件输入字段的表单的提交按钮(),服务器首先会完全接收文件后将检查文件。

I have a issue on uploading files:

In order to avoid an overloading of the server, I would check the size of a file before that the server receives it. If I am not wrong, pressing the submit button of a form which contains a file input field (<input type="file" name="...">), the server first will entirely receive the file and after will check the file.

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

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

发布评论

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

评论(1

空‖城人不在 2024-10-20 02:28:15

我猜测文件上传将有一个 Content-Length 标头,在这种情况下,您可以在服务器端检查它,如果它太大则断开连接。

I'm guessing that file uploads will have a Content-Length header, in which case, you can just check that at the server end and drop the connection if it's too large.

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