我使用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>
我有一个工厂作为额外的层,以防卫星器对我不起作用,这只是一个指令:
.factory ('authenticationService', ['CONFIG', '$auth', function authenticationService (CONFIG, $auth) {
var authentication = {};
authentication.isAuthenticated = function (){
return $auth.isAuthenticated();
};
return authentication;
}])
因此即使我点击退出,标题也不会更新。我是如何在标题中设置isAuthenticated的?
答案 0 :(得分:2)
将您的控制器代码更改为此
$scope.isAuthenticated = authenticationService.isAuthenticated;
然后在html上你可以简单地使用。
ng-show="isAuthenticated()"
注意强>
ng-show
会在每个authenticationService.isAuthenticated
周期调用digest
方法