gzgchzc博客最新更新地址:http://blog.gzvtc.cc/
ZIP
解压zip文件
cordova plugin add cordova-plugin-zip
Examples
module.controller('MyCtrl', function($scope, $cordovaZip) {
$cordovaZip
.unzip(
src, // https://github.com/MobileChromeApps/zip/blob/master/tests/tests.js#L32
dest // https://github.com/MobileChromeApps/zip/blob/master/tests/tests.js#L45
).then(function () {
console.log('success');
}, function () {
console.log('error');
}, function (progressEvent) {
// https://github.com/MobileChromeApps/zip#usage
console.log(progressEvent);
});
});