admin管理员组文章数量:1351997
I'm attempting to download a couple of image files, and store it into a single zip file using JavaScript and JSZip. But this is returning an empty zip file. What am I doing wrong? I'm using JSZip and JSZip-Utils
function createZip() {
//Create zip file object
var zip = new JSZip();
//Add folders
//Add files
JSZipUtils.getBinaryContent("icons/8_Bit_Character.png", function (err, data) {
if(err) {
throw err; // or handle the error
}
zip.file("picture.png", data, {binary:true});
});
JSZipUtils.getBinaryContent("icons/16_Bit_Character.png", function (err, data) {
if(err) {
throw err; // or handle the error
}
zip.file("picture2.png", data, {binary:true});
});
//Compile all the data into memory.
var base64 = null;
if (JSZip.support.uint8array) {
promise = zip.generateAsync({type : "uint8array"});
} else {
promise = zip.generateAsync({type : "string"});
}
//Generate the zip file and download it.
zip.generateAsync({type:"base64"}).then(function (base64) {
location.href="data:application/zip;base64," + base64;
});
}
I'm attempting to download a couple of image files, and store it into a single zip file using JavaScript and JSZip. But this is returning an empty zip file. What am I doing wrong? I'm using JSZip and JSZip-Utils
function createZip() {
//Create zip file object
var zip = new JSZip();
//Add folders
//Add files
JSZipUtils.getBinaryContent("icons/8_Bit_Character.png", function (err, data) {
if(err) {
throw err; // or handle the error
}
zip.file("picture.png", data, {binary:true});
});
JSZipUtils.getBinaryContent("icons/16_Bit_Character.png", function (err, data) {
if(err) {
throw err; // or handle the error
}
zip.file("picture2.png", data, {binary:true});
});
//Compile all the data into memory.
var base64 = null;
if (JSZip.support.uint8array) {
promise = zip.generateAsync({type : "uint8array"});
} else {
promise = zip.generateAsync({type : "string"});
}
//Generate the zip file and download it.
zip.generateAsync({type:"base64"}).then(function (base64) {
location.href="data:application/zip;base64," + base64;
});
}
Share
Improve this question
edited May 21, 2017 at 12:14
Daniel Foreman
asked May 21, 2017 at 11:00
Daniel ForemanDaniel Foreman
1252 silver badges7 bronze badges
2 Answers
Reset to default 5Try using function from the Mini app : downloader example in documentation. This will fetch the content and return promise for that content / image.
function urlToPromise(url) {
return new Promise(function(resolve, reject) {
JSZipUtils.getBinaryContent(url, function (err, data) {
if(err) {
reject(err);
} else {
resolve(data);
}
});
});
}
zip.file(filename, urlToPromise(url), {binary:true});
JSZipUtils.getBinaryContent
inner function is happening asynchronously.
So when you call zip.generateAsync
, zip.file("picture.png", data, {binary:true});
hasn't happened yet.
Here is my example:
var count = 0;
.......
JSZipUtils.getBinaryContent(imageUrl, function (err, data) {
if (err) {
// throw err; // or handle the error
console.log(err);
}
else {
zip.file(fileName, data, { binary: true });
count++;
if (count == selectedImages.length) {
zip.generateAsync({ type: "blob" }).then(function (base64) {
// window.location.replace("data:application/zip;base64," + base64);
saveAs(base64, `archive.zip`);
console.log("inner");
});
}
}
});
本文标签: javascriptDownload images and download as Zip with JSZip and JSZip UtilsStack Overflow
版权声明:本文标题:javascript - Download images and download as Zip with JSZip and JS-Zip Utils - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743905024a2559361.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论