admin管理员组文章数量:1343336
So apologies in advance for the terrible title. I don't really know all the correct angular terminology for these things.
I have code like this in a scope:
$scope.catName = 'Le cat'
//<-- Magic goes here
$scope.$watch('catName', function () {
//[...]
})
Now since angular waits until the next digest (is that the correct term?) to evaluate the watch, my initial assignment ('Le cat') will trigger the watch.
I would like this assigment to not trigger the watch, but changes after this to do so.
Is there some way to reset the 'dirty state' of catName?
Js-fiddle: /
So apologies in advance for the terrible title. I don't really know all the correct angular terminology for these things.
I have code like this in a scope:
$scope.catName = 'Le cat'
//<-- Magic goes here
$scope.$watch('catName', function () {
//[...]
})
Now since angular waits until the next digest (is that the correct term?) to evaluate the watch, my initial assignment ('Le cat') will trigger the watch.
I would like this assigment to not trigger the watch, but changes after this to do so.
Is there some way to reset the 'dirty state' of catName?
Js-fiddle: http://jsfiddle/7DNrD/1/
Share Improve this question edited Jun 10, 2013 at 12:33 Abhishek Nandi 4,2751 gold badge33 silver badges44 bronze badges asked Jun 10, 2013 at 11:48 alunalun 3,44122 silver badges26 bronze badges1 Answer
Reset to default 16Check this workaround
http://jsfiddle/7DNrD/5/
$scope.catName = 'Le cat'
$scope.$watch('catName', function (newValue, oldValue) {
if(oldValue === newValue){
return;
}
//[...]
})
本文标签: javascriptSkip watch initial callStack Overflow
版权声明:本文标题:javascript - Skip $watch initial call - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743694092a2523204.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论