为什么从互联网下载文件时会发生这种情况
我发现了一个让我困惑的有趣问题。
当我使用 Chrome 从互联网下载文件时,我注意到了这一点。
对于某些类型的文件,例如此文件,Chrome 下载栏会提醒您文件的总大小以及下载的剩余时间。
但是,对于其他类型的文件,例如此文件, chrome下载栏不会提醒总大小和剩余时间。
那么为什么会有这样的差异呢?
我猜它与 HTTP 或 HTTPS 协议有关,对吗? 但我不知道如何从这个角度解释这一点。
I found an interesting issue that confused me.
I noticed it when I use a Chrome to download files from the Internet.
For some kind of files, like this one, the Chrome download bar will remind you the total size of the file and the remaining time to download it.
However, for some other kind of files, like this one, the chrome download bar will not remind the total size and the remaining time.
So why is there such difference?
I guess it has something with the HTTP or HTTPS protocol, am I right?
But I do not know how to explain this in this point of view.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第一个具有以下 HTTP 标头:
第二个没有 Content-Length 标头,因此浏览器无法显示下载百分比。
您可以在命令行上使用
curl
查看 HTTP 标头:The first one has this HTTP header:
The second one does not have the Content-Length header, and so the browser cannot show the download percentage.
You can view HTTP headers with
curl
on the command line: