我正在使用 Satellizer 进行身份验证,登录后,标题中的登录/注册按钮应更改为注销,但它们不会。
这是我的标头指令:
angular.module('pages.components.navHeader', [
'common.services.authenticationService'
])
.directive('navHeader', function () {
var directive = {};
directive.restrict = "E";
directive.templateUrl = "navHeader.tpl.html";
directive.controller = ['$scope','$location', 'CONFIG', 'authenticationService', function navHeaderCtrl($scope, $location, CONFIG, authenticationService) {
$scope.isAuthenticated = authenticationService.isAuthenticated();
$scope.logout = function (){
authenticationService.logout();
};
}];
return directive;
});
这是我的标题模板中有趣的部分:
<li ng-show="!isAuthenticated"><a ng-href="#">Login</a></li>
<li ng-show="!isAuthenticated"><a ng-href="#">Register</a></li>
<li ng-show="isAuthenticated"><a ng-click="logout()" href="#">Logout</a></li>
我有一个工厂作为额外的层,以防 satellizer 对我不起作用,这只是一个执行此操作的指令:
.factory ('authenticationService', ['CONFIG', '$auth', function authenticationService (CONFIG, $auth) {
var authentication = {};
authentication.isAuthenticated = function (){
return $auth.isAuthenticated();
};
return authentication;
}])
因此,即使我单击注销,标题也不会更新。我在我的标题中设置 isAuthenticated 的方式有问题吗?