注入控制器时,服务未定义

Service undefined when injected into controller

本文关键字:服务 未定义 控制器 注入      更新时间:2023-09-26

我有一个控制器,我已经注入了一个工厂,但是当我调用该工厂的方法时,它返回为未定义。不知道我做错了什么。如有任何帮助,不胜感激。

工厂:

(function(){
    'use strict';
    // Declare factory and add it 'HomeAutomation' namespace.
    angular.module('HomeAutomation').factory('AuthenticationService', ['$http','$localStorage', '$window', function($http, $localStorage, $window){
    var service = {};

    service.login = Login;
    service.logout = Logout;
    service.parseJWT = parseJWT;
    service.loginStatus = loginStatus;
    return service;

    function Login(email, password, callback){
        $http.post('api/user/login', {email: email, password: password})
            .success(function(res){
                // Login successful if there is a token in the response.
                if(res.token){
                    // store username and token in local storage to keep user logged in between page refreshes
                    $localStorage.currentUser = { email: email, token: res.token };
                    // add jwt token to auth header for all requests made by the $http service
                    $http.defaults.headers.common.Authorization = 'Bearer ' + res.token;
                    callback(true);
                }else{
                    callback(res);
                }
            }).error(function(err){
            console.log(err);
        });
    }
    function Logout(){
        $localStorage.currrntUser
    }
    function parseJWT(token){
        var base64URL, base64;
        base64URL = token.split('.')[1];
        base64 = base64URL.replace('-', '+').replace('_', '/');
        console.log(JSON.parse($window.atob(base64)));
    }
    function loginStatus(){
        if($localStorage.currentUser){
            return true;
        }else{
            return false;
        }
    }
}]);}());

控制器:

(function(){
angular.module('HomeAutomation')
    .controller('loginController', ['$scope', '$location', 'AuthenticationService', function($scope, $location, $localStorage, AuthenticationService){
        $scope.isLoggedIn = AuthenticationService.logout();
        $scope.logUserIn = function(){
            AuthenticationService.login($scope.login.email, $scope.login.password, function(result){
                if(result === true){
                    $location.path('/');
                }else{
                    console.log(result);
                }
            });
        };
        $scope.logUserOut = function(){
            AuthenticationService.logOut();
        }
    }]);}());

这是导致错误的行:

$scope.isLoggedIn = AuthenticationService.logout();

显然"AuthenticationService"没有定义。不知道为什么。

你搞砸了依赖序列,你需要从控制器工厂功能中删除$localStorage,因为$localStorage在控制器&

.controller('loginController', ['$scope', '$location', 'AuthenticationService', 
    function($scope, $location, AuthenticationService){
                //^^^^^^^^^^removed $localStorage dependency from here

注意:总是要确保当你在DI数组中注入任何依赖项时,它们应该在控制器函数

中以相同的顺序使用

注射不好:

.controller('loginController', ['$scope', '$location', 'AuthenticationService', function($scope, $location, $localStorage, AuthenticationService){

试试这个:

.controller('loginController', ['$scope', '$location', '$localStorage', 'AuthenticationService', function($scope, $location, $localStorage, AuthenticationService){

我不知道你使用哪个构建器,但例如Gulp,你可以使用gulp-ng-annotate,它将为你做这项工作,这样你就只能写:

.controller('loginController', function($scope, $location, $localStorage, AuthenticationService){
没有数组的

ng-annotate会照顾剩下的。