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>

サテライザーが機能しない場合に備えて、追加のレイヤーとしてファクトリがあります。これは、これを行う単なるディレクティブです。

   .factory ('authenticationService', ['CONFIG', '$auth', function authenticationService (CONFIG, $auth) {
    var authentication = {};

    authentication.isAuthenticated = function (){
        return $auth.isAuthenticated();
    };
    return authentication;
}])

そのため、ログアウトをクリックしても、ヘッダーは更新されません。ヘッダーに isAuthenticated を設定する方法に何か問題がありますか?

4

1 に答える 1