angularjs跨路径维护范围变量

时间:2014-04-30 21:00:02

标签: angularjs angularjs-scope angularjs-service angularjs-routing ngroute

如何跨路线维护模型。例如,我有一个加载到主页的配置文件列表。主页还包含一个"加载更多"加载更多配置文件的操作,基本上将数据推送到模型。单击特定配置文件时,将通过路径激活该配置文件的详细视图。详细视图有一个后退按钮,可将用户重定向回主页。在路由回到主页上由&#34加载的数据(配置文件);加载更多"行动失去了。我需要使用"加载更多"来维护模型。前置数据

以下是使用的代码

/* Controllers */
var profileControllers = angular.module('profileControllers', ['profileServices'])


profileControllers.controller('profileListCtrl', ['$scope','$location', 'Profile','$http',
  function($scope,$location, Profile,$http) {
    $scope.Profiles = Profile.query(function(){

        if($scope.Profiles.length < 3) {
                    $('#load_more_main_page').hide();
                }
        });
    $scope.orderProp = 'popular';
    $scope.response=[];

    //LOADMORE
    $scope.loadmore=function()
    {

        $http.get('profiles/profiles.php?profile_index='+$('#item-list .sub-item').length).success(function(response){
            if(response) {
                var reponseLength = response.length;
                if(reponseLength > 1) {
                    $.each(response,function(index,item) {


                         $scope.Profiles.push({
                                            UID: response[index].UID,
                                            id: response[index].id,
                                            popular: response[index].popular,
                                            imageUrl: response[index].imageUrl,
                                            name: response[index].name,
                                            tags: response[index].tags,
                                            category: response[index].category
                                        });

                        });
                }
                if(reponseLength < 3) {
                    $('#load_more_main_page').hide();
                }
            }

        });


    }

  }]);





  /* App Module */

var profileApp = angular.module('profileApp', [
  'ngRoute',
  'profileControllers',
  'profileServices',
]);



profileApp.config(['$routeProvider',
  function($routeProvider) {
    $routeProvider.
      when('/profiles', {
        templateUrl: 'partials/profile-list.html',
        controller: 'profileListCtrl',
        resolve: {
            deps: function ($q, $rootScope) {
                var deferred = $q.defer();
                var dependencies = ['js/sort.js'];
                $script(dependencies, function () {
                    $rootScope.$apply(function () {
                        deferred.resolve();
                    });
                });
                return deferred.promise;
            }
        }
      }).
      when('/profiles/:profileId', {
        templateUrl: 'partials/profile-detail.html',
        controller: 'profileDetailCtrl',

      }).
      when('/profiles/cat/:category', {
        templateUrl: 'partials/profile-list-category.html',
        controller: 'profileCategoryListCtrl',

      }).
      when('/create/', {
        templateUrl: 'partials/profile-create.html',
        controller: 'profileCreateCtrl',
        css: ['css/createprofile.css','css/jquery-ui-1.10.4.custom.min.css','css/spectrum.css'],

      }).
      otherwise({
        redirectTo: '/profiles'
      });
  }]);

4 个答案:

答案 0 :(得分:5)

服务通常是在视图之间共享数据的可接受方式。因为它是单例并且在路由更改时不会重新生成,所以您可以在那里“缓存”数据并从注入服务的任何控制器中检索它。

这个问题的第二个答案用代码解释:

Same data in multiple views using AngularJS

答案 1 :(得分:0)

您可以使用AngularJS service来执行此操作。服务是单身人士,可以跨路线变化存储数据。

myModule.factory('serviceId', function() {
  var shinyNewServiceInstance = {
    // your data here
  };
  return shinyNewServiceInstance;
});

并在你的控制器中使用它:

controller('MyController', function($scope, serviceId) {
  // use serviceId here
});

答案 2 :(得分:0)

您丢失了$scope个变量,因为在Angular中controller不是单身。导航回来时会生成一个新的实例。

如果您想在路线更改之间存储任何类型的变量,您可以创建service来执行此操作。

答案 3 :(得分:0)

创建一个Angular服务并将其传递给不同的路径。

详细答案 - https://stackoverflow.com/a/16559855/907388