ionic添加cordova插件-Progress 2016-12-22 app ionic **Progress** *下载,上传,加载进度对话框显示* ``` cordova plugin add cordova-plugin-progressindicator ``` ![这里写图片描述](http://img.blog.csdn.net/20161222162425907?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvcXFfMzM1NjE3MDA=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/SouthEast) **Examples** ``` module.controller('MyCtrl', function($scope, $cordovaProgress) { $cordovaProgress.showSimple(true) // requires .hide() $cordovaProgress.showSimpleWithLabel(true, "Loading") // .hide() $cordovaProgress.showSimpleWithLabelDetail(true, "Loading", "detail") // requires .hide() $cordovaProgress.hide() $cordovaProgress.showDeterminate(false, 100000) $cordovaProgress.showDeterminateWithLabel(true, 50000, "Loading") $cordovaProgress.showAnnular(true, 50000) $cordovaProgress.showAnnularWithLabel(false, 100000, "Loading") $cordovaProgress.showBar(true, 50000) $cordovaProgress.showBarWithLabel(false, 100000, "Loading") $cordovaProgress.showSuccess(true, "Success!") // requires .hide() $cordovaProgress.showText(false, 100000, "Loading") }); ```