我想用JSZip下载并解压缩一个文件夹,我用这个npm 包安装了它。JSZip 无法这样做,抱怨损坏的 zip 或意外的签名。
有很多关于jszip的问题。他们都没有回答我的具体问题,但为了完整起见,我在这里列出了一些参考资料:
作为测试场景,我创建了两个 zip 文件,名为folder.zip
和text.zip
. text.zip
是一个压缩的txt文件,folder.zip
是一个压缩文件夹,包含一个txt文件。两者都已在 Ubuntu 中通过命令行进行压缩。
我用npm 包 serve来托管它们。它们可以在 localhost 上访问:http://localhost:5000/test.zip
这是我的代码,它是打字稿,编译后的 Javascript 使用节点执行:
import axios from 'axios';
import * as JSZip from 'jszip';
axios.get(
"http://localhost:5000/text.zip",
//"http://localhost:5000/folder.zip",
{ responseType: "blob" })
.then((response) => {
let zip = new JSZip();
zip.loadAsync(response.data).then((value) => {
console.log('jszip unzipped response.data');
value.forEach((path, file) => {
console.log(path);
})
}).catch((e) => {
console.log(`jszip failed on response.data: ${e}`);
})
let buffer = Buffer.from(response.data, 'binary');
zip.loadAsync(buffer).then((value) => {
console.log('jszip unzipped buffer');
value.forEach((path, file) => {
console.log(path);
})
}).catch((e) => {
console.log(`jszip failed on buffer: ${e}`);
})
}).catch((reason) => {
console.log(`axios request failed: ${reason}`);
})
该text.zip
文件可以毫无问题地解压缩。但是当我尝试解压缩文件夹时,它失败了。错误信息是:
jszip failed on response.data: Error: Corrupted zip or bug: unexpected signature (\x00\x50\x4B\x07, expected \x50\x4B\x03\x04)
为了比较,我对adm-zip做同样的事情。这适用于压缩文件和压缩文件夹。但是,adm-zip 仅在给定缓冲区时才有效。这就是为什么我也尝试将缓冲区传递给 jszip。
import axios from 'axios';
import * as AdmZip from 'adm-zip';
axios.get(
"http://localhost:5000/folder.zip",
{ responseType: "blob" })
.then((response) => {
let buffer = Buffer.from(response.data, 'binary');
let admzip = new AdmZip(buffer);
let zipEntries = admzip.getEntries();
zipEntries.forEach(element => {
console.log(element.entryName);
})
}).catch((reason) => {
console.log(`axios request failed: ${reason}`);
})