前端库推荐:JSZip

朱治龙
2022-06-15 / 0 评论 / 12 阅读 / 正在检测是否收录...
温馨提示:
本文最后更新于2022年06月15日,已超过938天没有更新,若内容或图片失效,请留言反馈。

jszip是一个用于创建、读取和编辑.zip文件的JavaScript库,且API的使用也很简单

链接

示例

var zip = new JSZip();
zip.file("Hello.txt", "Hello World\n");
var img = zip.folder("images");
img.file("smile.gif", imgData, {base64: true});
zip.generateAsync({type:"blob"})
.then(function(content) {
    // see FileSaver.js
    saveAs(content, "example.zip");
});

兼容性

OperaFirefoxSafariChromeInternet ExplorerNode.js
YesYesYesYesYesYes
Tested with the latest versionTested with 3.0 / 3.6 / latest versionTested with the latest versionTested with the latest versionTested with IE 6 / 7 / 8 / 9 / 10Tested with node.js 0.10 / latest version
0

评论 (0)

取消