Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a service, say:

factory('aService', ['$rootScope', '$resource', function ($rootScope, $resource) {
  var service = {
    foo: []
  };

  return service;
}]);

And I would like to use foo to control a list that is rendered in HTML:

<div ng-controller="FooCtrl">
  <div ng-repeat="item in foo">{{ item }}</div>
</div>

In order for the controller to detect when aService.foo is updated I have cobbled together this pattern where I add aService to the controller's $scope and then use $scope.$watch():

function FooCtrl($scope, aService) {                                                                                                                              
  $scope.aService = aService;
  $scope.foo = aService.foo;

  $scope.$watch('aService.foo', function (newVal, oldVal, scope) {
    if(newVal) { 
      scope.foo = newVal;
    }
  });
}

This feels long-handed, and I've been repeating it in every controller that uses the service's variables. Is there a better way to accomplish watching shared variables?

share|improve this question

2 Answers

As far as I can tell, you dont have to do something as elaborate as that. You have already assigned foo from the service to your scope and since foo is an array ( and in turn an object it is assigned by reference! ). So, all that you need to do is something like this :

function FooCtrl($scope, aService) {                                                                                                                              
  $scope.foo = aService.foo;

 }

If some, other variable in this same Ctrl is dependant on foo changing then yes, you would need a watch to observe foo and make changes to that variable. But as long as it is a simple reference watching is unnecessary. Hope this helps.

share|improve this answer
Thanks for the response. If the variable in the service is a "primitive" instead of an object, like a string, would that, in turn, require a $watch? – berto Sep 25 '12 at 8:30
2  
I tried, and I couldn't get $watch to work with a primitive. Instead, I defined a method on the service that would return the primitive value: somePrimitive() = function() { return somePrimitive } And I assigned a $scope property to that method: $scope.somePrimitive = aService.somePrimitive;. Then I used the scope method in the HTML: <span>{{somePrimitive()}}</span> – Mark Rajcok Oct 2 '12 at 20:24

Here's how I implement a service in my controllers.

function PageController($scope, PageStateService) {
    // initial value
    $scope.page = 0;
    // watch current page for updates and set page value
    $scope.$watch(PageStateService.getCurrentPage, function(newValue, oldValue, scope) {
        if (newValue && newValue !== oldValue) {
            $scope.page = newVal;
        }
    });
}
share|improve this answer
This is exactly how the OP said he didn't want to do it. – Xesued Feb 4 at 21:40
The digest cycle allows for 200 operations a second. Until that limit is reached, I suggest not doing premature optimization. – rxgx Feb 6 at 18:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.