小编典典

Ajax-下载前获取文件大小

ajax

基本上,我想确定是否应该使用AJAX下载文件,具体取决于文件大小。

我猜这个问题也可以表述为:我如何仅获取ajax请求的标头?


编辑 :评论中的ultima-rat0告诉了我两个已经被问到的显然与这个相同的问题。它们非常相似,但是都需要jQuery。我想要一个非jQuery解决方案。


阅读 306

收藏
2020-07-26

共1个答案

小编典典

您可以手动获取XHR响应头数据:

http://www.w3.org/TR/XMLHttpRequest/#the-
getresponseheader()-方法

此函数将获取所请求URL的文件大小:

function get_filesize(url, callback) {
    var xhr = new XMLHttpRequest();
    xhr.open("HEAD", url, true); // Notice "HEAD" instead of "GET",
                                 //  to get only the header
    xhr.onreadystatechange = function() {
        if (this.readyState == this.DONE) {
            callback(parseInt(xhr.getResponseHeader("Content-Length")));
        }
    };
    xhr.send();
}

get_filesize("http://example.com/foo.exe", function(size) {
    alert("The size of foo.exe is: " + size + " bytes.");
});
2020-07-26