0

なので、ちょっと困っています。Injecting service から Directiveまでの以前のソリューションをすべて調べましたが、何が間違っているのか本当にわかりません。以下に示すauthServicesがあります。

app.factory('authService', ['$http', function ($http) {

var authServiceFactory = {};

var _authentication = {
    isAuth: false,
    userName: ""
};
var _login = function (loginData) {
_authentication.isAuth = true;
_authentication.userName = loginData.userName;
}
appFactory.login = _login;
return appFactory;
}]);

彼らが提案した方法で注入しています。

    app.directive('headerNotification', ['authService', function (authService) {
    return {
        templateUrl: 'app/scripts/directives/header/header-notification/header-notification.html',
    restrict: 'E',
    replace: true,
    link: function (scope) {
        scope.authService = authService;
    }
    }
}]);

私のhtmlは

    <li data-ng-hide="authentication.isAuth">

私は本当にこれを間違っていると感じています。どんな助けでも大歓迎です。

4

1 に答える 1

1

あなたの見解は何authentication.isAuthですか。

オブジェクトのスペルが間違っていると思います。

<li data-ng-hide="authService.isAuth">

あなたのスコープオブジェクトはそうではありauthServiceませんauthenticationよね?

更新 - ディレクティブに verible を渡す

コントローラーに auth 変数があると仮定しています。

$scope.myAuthService = authservice;

いいえ、この変数を属性としてディレクティブに渡すことができます。

<header-notification my-auth="myAuthService"> </header-notification>

これmyAuthServiceがスコープ変数です。

この変数を受け入れるようにディレクティブを変更します。

app.directive('headerNotification', function () {
    return {
                templateUrl: 'app/scripts/directives/header/header-notification/header-notification.html',
                restrict: 'E',
                scope : {
                            myAuth : '=' // here you specify that you need to convert your attribute variable 'my-auth' to your directive's scope variable 'myAuth'
                        },
                replace: true,
                link: function (scope, element, attr, controller) {
                      // here you will get your auth variable
                      scope.myAuth; // this contains your auth details
                }
            }
});
于 2015-11-11T05:59:07.083 に答える