0
嗨,目前我使用ngRoute從後端獲取模板。但由於模板的大小,它會凍結,直到模板被加載。我想要的是一個顯示模板狀態的進度條,因爲它是正在下載。ngRoute在angularjs中的進度條
我發現ngProgress可能是我想要的東西,但我還沒有能夠集成相同。這裏是ngRoute的小片段
App.config(function($routeProvider, $locationProvider) {
$routeProvider
.when('/', {
templateUrl : '/templates/home.html',
controller : 'landing'
})
.when('/login', {
templateUrl : '/templates/login.html',
controller : 'authCtl'
})
.when('/signup', {
templateUrl : '/templates/signup.html',
controller : 'authCtl'
})
.otherwise({
templateUrl : '/templates/404.html',
controller : 'mainController'
});
$locationProvider.html5Mode(true);
});
https://www.phase2technology.com/blog/angularjs-two-ways-loading-animations/ –
https://github.com/chieffancypants/angular-loading-bar試試這個 –