我不完全确定 ui-router 是如何工作的,但如果它类似于 $routeProvider (或者您也在使用 $routeProvider ),您可以将控制器分配给“应用程序的标题”并让该控制器执行工作。
以下是它如何工作的基本示例。_handleLoad 模拟轮询服务器,完成后,您可以轻松更改标题(或使用 $broadcast 更改站点的其余部分)。$routeProvider 让用户在 HeaderCtrl 继续在页面上执行时浏览站点。
http://plnkr.co/edit/EYqcjhX8kI1GmkYs5VZe?p=preview
app.controller('HeaderCtrl', function ($scope, $timeout) {
var _i = 0,
_handleLoad = function () {
console.log('checking..');
// TODO check the server here, fire the $timeout in the callback if the process isn't complete
if (_i == 3) {
$scope.loading = false;
_i = 0;
$scope.headerText = 'we have loaded something';
console.log('all done');
return;
}
_i += 1;
$timeout(_handleLoad, 1000);
};
$scope.headerText = 'click here to load something';
$scope.loading = false;
$scope.load = function () {
$scope.loading = true;
_handleLoad();
}
});