我正在尝试解压缩cordova 3.4中的文件夹。但到目前为止还没有成功。我看过很多教程,但似乎没有一个对我有用。如果您已经完成了这项工作并且工作正常,请建议我使用一些插件或代码。
使用http://weblogs.asp.net/soever/cordova-file-transfer-unzip-and-present-adventures成功保存文件,但解压缩无效。
这是我的代码,要求解压缩。
document.getElementById("btnUnzip").onclick = function() {
var that = this,
App = new DownloadApp(),
fileName = "ft-p.zip",
folderName = "content";
console.log("zip button clicked");
App.unzip(folderName, fileName,
/*success*/function() { alert("Unzipped and assigned"); },
/*fail*/function(error) { alert("Unzip failed: " + error.code); }
);
};
感谢。