1
我在我的AngularJS應用程序中使用Material Design,我想在加載頁面時添加進度欄。如何在AngularJS MD中使用<md-progress-linear>?
MD使用md-progress-*指令獲得加載條:
<md-progress-linear md-mode="determinate" value="..."></md-progress-linear>
在我的應用我試圖讓$viewContentLoaded
加載進度完成:
HTML:
<html ng-app="app">
<body ng-controller="AppCtrl">
<md-progress-circular ng-if="determinateValue === 100" md-mode="determinate" value="{{determinateValue}}"></md-progress-circular>
...
</body>
</html>
JS:
'use strict';
angular.module('app', ['ngMaterial', 'ngAnimate'])
.controller('AppCtrl', function ($scope) {
$scope.determinateValue = 0;
$scope.$on('$viewContentLoaded', function(){
$scope.determinateValue = 100;
});
});
但它不起作用,我沒有得到任何錯誤。
ps。 <md-progress-linear>
標籤將從DOM中消失。