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
.
1 Answer
Reset to default 11It 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
版权声明:本文标题:javascript - angularjs $rootScope.watch not working - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743803386a2541730.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论