admin管理员组

文章数量:1344545

I am new to angularjs. I am trying to learn $watch property . Here is my plunker.

rootScope.$watch property is executing on page load only and not on text change event. But it works properly with $scope.$watch.

I am new to angularjs. I am trying to learn $watch property . Here is my plunker.

rootScope.$watch property is executing on page load only and not on text change event. But it works properly with $scope.$watch.

Share Improve this question edited Dec 2, 2013 at 7:57 Taylan Aydinli 4,36315 gold badges41 silver badges33 bronze badges asked Dec 2, 2013 at 7:52 Sanjay SalunkheSanjay Salunkhe 2,7335 gold badges31 silver badges56 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 11

It will work if you turn it to Object , like:

  $rootScope.name = { value:'World'};

And bind it like:

  <input type="text" ng-model="name.value"></input>

Working: http://plnkr.co/edit/n4QnivBiRvFMAM91UmIT?p=preview

Here you have a great explanation: What are the nuances of scope prototypal / prototypical inheritance in AngularJS?

本文标签: javascriptangularjs rootScopewatch not workingStack Overflow