最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - angularjs $rootScope.watch not working - Stack Overflow

programmeradmin1浏览0评论

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?

发布评论

评论列表(0)

  1. 暂无评论