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 badges
Add a ment  | 

1 Answer 1

Reset to default 16

Check 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