2

我试图将大数据从视图页面发送到控制器,我需要使用一种压缩技术,所以我选择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.
4

1 回答 1

0

您可以使用该load()方法:http ://stuk.github.com/jszip/#doc_load_data_options

于 2013-03-01T07:04:43.443 回答