web-dev-qa-db-ja.com

コントローラ間でデータを渡すAngularJSサービス

AngularJSサービスを使用して2つのコントローラー間でデータをやり取りしようとすると、サービスからデータにアクセスしようとすると、2番目のコントローラーは常に未定義を受け取ります。これは、最初のサービスが$ window.location.hrefを実行し、これがサービス内のデータを消去していると考えているためだと推測していますか? URLを新しい場所に変更し、2番目のコントローラーのサービスにデータを保持する方法はありますか?以下のコードを実行すると、2番目のコントローラーのアラートは常に未定義です。

app.js(サービスが定義されている場所)

var app = angular.module('SetTrackerApp', ['$strap.directives', 'ngCookies']);

app.config(function ($routeProvider) 
{
$routeProvider
  .when('/app', {templateUrl: 'partials/addset.html', controller:'SetController'})
  .when('/profile', {templateUrl: 'partials/profile.html', controller:'ProfileController'})
  .otherwise({templateUrl: '/partials/addset.html', controller:'SetController'});
});

app.factory('userService', function() {
var userData = [
    {yearSetCount: 0}
];

return {
    user:function() {
        return userData;
    },
    setEmail: function(email) {
        userData.email = email;
    },
    getEmail: function() {
        return userData.email;
    },
    setSetCount: function(setCount) {
        userData.yearSetCount = setCount;
    },
    getSetCount: function() {
        return userData.yearSetCount;
    }
};
});

logincontroller.js:(サービスに値を設定するコントローラー1)

    app.controller('LoginController', function ($scope, $http, $window, userService) {

$scope.login = function() {
    $http({
        method : 'POST',
        url : '/login',
        data : $scope.user
    }).success(function (data) {
        userService.setEmail("foobar");
        $window.location.href = '/app'
    }).error(function(data) {
        $scope.login.error = true;
        $scope.error = data;
    });
}
});

appcontroller.js(サービスから値を読み取ろうとする2番目のコントローラー)

app.controller('AppController', function($scope, $http, userService) {

$scope.init = function() {      
    alert("In init userId: " userService.getEmail());
}

});
20
AquaLunger

このようにサービスを定義します

app.service('userService', function() {
  this.userData = {yearSetCount: 0};

  this.user = function() {
        return this.userData;
  };

  this.setEmail = function(email) {
        this.userData.email = email;
  };

  this.getEmail = function() {
        return this.userData.email;
  };

  this.setSetCount = function(setCount) {
        this.userData.yearSetCount = setCount;
  };

  this.getSetCount = function() {
        return this.userData.yearSetCount;
  };
});

こちらのダンカンの答えをご覧ください。

AngularJS-サービスを角度で宣言するさまざまな方法の主な違いは何ですか?

27
Josh Petitt