如何使用进度百分比更新$ ionicLoading?

时间:2015-11-07 06:31:17

标签: ionic-framework ionic

正在处理Ionic项目并使用$ionicLoading来呈现下载进度(此进度需要锁定UI)。 那么如何使用$ionicLoading更新进度百分比(文本中)?

2 个答案:

答案 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>'
});