正在处理Ionic项目并使用$ionicLoading
来呈现下载进度(此进度需要锁定UI)。
那么如何使用$ionicLoading
更新进度百分比(文本中)?
答案 0 :(得分:4)
再次拨打$ionicLoading.show({template: 'updated text'})
,它将取代下一次。
答案 1 :(得分:2)
我建议使用范围属性:
// In your controller or us any scope you want.
$scope.uploadProgress = 0; // update this in your progress callback
// show once
$ionicLoading.show({
scope: $scope,
template: '<p>Saving...</p><p>{{uploadProgress}}</p><ion-spinner></ion-spinner>'
});