ionic添加cordova插件-ZIP 2016-12-22 app ionic **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); }); }); ```