2013-02-23 50 views
1

我試圖從查看頁面發送大量數據到控制器,我需要使用一種壓縮技術 所以我選擇JSZip壓縮數據,我能夠壓縮數據,但我'我無法解壓縮數據使用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. 

回答