在浏览器中批量下载文件(上)

      一般来说浏览器要同时下载几个文件,比如pdf文件,会在服务器端把几个文件压缩成一个文件。但是导致的问题就是会消耗服务器的cpu和io资源。

       那有没有办法,用户点了几个文件,在客户端同时下载呢? 支持html5的浏览器是可以的,html的a标签有一个属性download

 <a download="下载的1.pdf" href="1.pdf">单个文件下载</a>, 经过测试在edge浏览器,firefox和chrome都支持。但是遗憾的是ie浏览器不支持。参考下面的例子。

<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
    <title></title>
    <script src="//libs.baidu.com/jquery/1.11.1/jquery.min.js"></script>
</head>

<body>
    <input type="button" class="downloadAll" value="批量下载" />

    <script>
        var filesForDownload = [];
        filesForDownload[filesForDownload.length] = {
            path: "1.zip", //要下载的文件路径
            name: "file1.txt" //下载后要显示的名称
        };
        filesForDownload[filesForDownload.length] = {
            path: "2.zip",
            name: "file2.txt"
        };
        filesForDownload[filesForDownload.length] = {
            path: "3.zip",
            name: "file3.txt"
        };

        function download(obj) {
            var temporaryDownloadLink = document.createElement("a");
            temporaryDownloadLink.style.display = 'none';
            document.body.appendChild(temporaryDownloadLink);
            temporaryDownloadLink.setAttribute('href', obj.path);
            temporaryDownloadLink.setAttribute('download', obj.name);
            temporaryDownloadLink.click();
            document.body.removeChild(temporaryDownloadLink);
        }

        $('input.downloadAll').click(function(e) {
            e.preventDefault();
            for (var x in filesForDownload) {
                download(filesForDownload[x]);

            }


        });
    </script>
</body>

</html>

ie浏览器怎么办呢? 也可以用window.open函数。

<!DOCTYPE html>
<html>
  <head>
	<meta charset="utf-8">
    <title></title>
	<script src="//libs.baidu.com/jquery/1.11.1/jquery.min.js"></script>
  </head>
  <body>
    <a download="下载的1.pdf" href="1.pdf">单个文件下载</a><br>
      <a href="#" class="yourlink">下载全部文件</a>

<script>

$('a.yourlink').click(function(e) {
    e.preventDefault();
    window.open('1.zip','download');
    window.open('2.zip','download');
    window.open('3.zip','download');
});
</script>
  </body>
</html>

完整的方案就是根据浏览器类型,调用不同的函数,实现。

另外要下载pdf,而不是在浏览器中打开的话,需要配置apache的配置文件,在httpd.conf中增加下面的配置。

<FilesMatch "\.pdf$">
   Header set Content-Disposition attachment
</FilesMatch>

发布了67 篇原创文章 · 获赞 9 · 访问量 10万+

猜你喜欢

转载自blog.csdn.net/robinhunan/article/details/84314648