1

我正在使用 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 的方式有问题吗?

4

1 回答 1

2

将您的控制器代码更改为此

$scope.isAuthenticated = authenticationService.isAuthenticated;

然后在 html 上你可以简单地使用。

ng-show="isAuthenticated()"

笔记

ng-showauthenticationService.isAuthenticated将在每个digest周期调用方法

于 2015-07-19T13:59:27.653 回答