前端实现压缩包下载——JSZip

在浏览器环境中,你可以使用 JavaScript 中的 fetchJSZip 库来实现将多个视频地址下载成一个压缩包。JSZip 是一个用于创建和解析 ZIP 文件的库。

npm install jszip
// 模拟数据
const videoInfo = [
  {
    videoUrl: 'https://www.youtube.com/watch',
    videoName: '视频名称1'
  },
  {
    videoUrl: 'https://www.youtube.com/look',
    videoName: '视频名称2'
  }
]
import JSZip from "jszip";

/**
 * 
 * @param {String} zipName 压缩包名
 * @param {Array} videoInfo 要下载的数据
 * @param {String} urlKey 下载地址的key
 * @param {String} videoNameKey 下载的文件名
 */
export function downloadVideosAsZip(zipName, videoInfo, urlKey, videoNameKey) {
    const zip = new JSZip();
    const fetchAndAddToZip = async (video, index) => {
        try {
            const response = await fetch(video[urlKey]);
            const videoBlob = await response.blob();

            // 将视频添加到 ZIP 中,使用 index 作为文件名
            zip.file(`${video[videoNameKey]}.mp4`, videoBlob);
        } catch (error) {
            console.error(`Error fetching or adding video ${index}:`, error);
        }
    };
    // 使用 Promise.all 来并行下载多个视频
    const downloadPromises = videoInfo.map((video, index) =>
        fetchAndAddToZip(video, index)
    );

    Promise.all(downloadPromises)
        .then(() => {
            // 生成 ZIP 文件
            return zip.generateAsync({ type: "blob" });
        })
        .then((zipBlob) => {
            // 创建一个链接
            const zipUrl = URL.createObjectURL(zipBlob);

            // 创建一个隐藏的 <a> 元素,设置链接并模拟点击
            const a = document.createElement("a");
            a.href = zipUrl;
            a.download = zipName + '.zip';
            a.style.display = "none";
            document.body.appendChild(a);
            a.click();

            // 释放链接
            URL.revokeObjectURL(zipUrl);

            // 移除 <a> 元素
            document.body.removeChild(a);
        })
        .catch((error) => {
            console.error("Error creating zip file:", error);
        });
};
前端可以使用jszip库来进行文件压缩,而Vue框架也提供了与jszip集成的方法。下面是一个使用Vue和jszip来压缩文件的简单示例。 首先,需要在Vue项目中安装jszip库。可以使用npm或yarn等包管理工具来安装。 ``` npm install jszip ``` 在Vue组件中引入jszip库并创建一个压缩文件的方法。 ```jsx import JSZip from 'jszip'; export default { data() { return { files: [] // 需要压缩的文件列表 }; }, methods: { async compressFiles() { const zip = new JSZip(); // 遍历文件列表,将每个文件添加到压缩包中 for (const file of this.files) { const content = await this.readFileAsync(file); // 异步读取文件内容 zip.file(file.name, content); // 添加文件到压缩包 } // 生成压缩文件 const zipContent = await zip.generateAsync({ type: 'blob' }); // 下载压缩文件 const link = document.createElement('a'); link.href = URL.createObjectURL(zipContent); link.download = 'compressed.zip'; link.click(); }, readFileAsync(file) { return new Promise((resolve, reject) => { const reader = new FileReader(); reader.onload = () => { resolve(reader.result); }; reader.onerror = reject; reader.readAsArrayBuffer(file); }); } } } ``` 上述代码中,`compressFiles`方法用于处理压缩文件的逻辑。首先创建了一个JSZip的实例。然后遍历文件列表并使用`readFileAsync`方法读取每个文件的内容,并添加到压缩包中。最后通过调用`generateAsync`生成压缩文件的内容,并创建一个下载链接,实现文件的下载。 `readFileAsync`方法使用`FileReader`来异步读取文件内容。通过`readAsArrayBuffer`方法读取文件内容,将读取到的结果作为Promise的返回值。 注意,在以上示例中,假设`this.files`是一个文件列表,表示需要压缩的文件。你可以根据实际情况进行修改和扩展。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值