如何使用JSZip解压缩

时间:2013-02-23 05:19:41

标签: javascript encoding zip compression

我尝试将大量数据从视图页面发送到控制器,我需要使用一种压缩技术 所以我选择JSZip来压缩数据,我能够压缩数据,但我无法使用视图页面中的JSZip解压缩数据(此处压缩内容将从控制器返回) 我已经通过JSZip,但我找不到解压缩的方法。

我的压缩代码:

var zip = new JSZip();
zip.file("temp.txt", JSON.stringify(buffers[0]));
var content = zip.generate({ compression: "DEFLATE" });

// here I'am sending the 'content' to the controller
// and I' am receiving compressed content from controller like 'content' and trying to decompress it.

1 个答案:

答案 0 :(得分:0)