加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

$watch How the $apply Runs a $digest

发布时间:2020-12-17 10:12:19 所属栏目:安全 来源:网络整理
导读:UPDATE : This post is meant for beginners,for those that just started to learn Angular and want to know how data-binding works. If you already know how to use Angular properly,I highly suggest you go to the source code instead. Angular use

UPDATE: This post is meant for beginners,for those that just started to learn Angular and want to know how data-binding works. If you already know how to use Angular properly,I highly suggest you go to the source code instead.

Angular users want to know how data-binding works. There is a lot of vocabulary around this:$watch,$apply,monospace; font-size:0.8em; vertical-align:baseline; display:inline-block">$digest,monospace; font-size:0.8em; vertical-align:baseline; display:inline-block">dirty-checking… What are they and how do they work? Here I want to address all those questions,which are well addressed in the documentation,but I want to glue some pieces together to address everything in here,but keep in mind that I want to do that in a simple way. For more technical issues,check the source.

Let’s start from the beginning.

The browser events-loop and the Angular.js extension

Our browser is waiting for events,for example the user interactions. If you click on a button or write into an input,the event’s callback will run inside Javascript and there you can do any DOM manipulation,so when the callback is done,the browser will make the appropiate changes in the DOM.

Angular extends this events-loop creating something calledangular context(remember this,it is an important concept). To explain what this context is and how it works we will need to explain more concepts.

The $watch list

Every time you bind something in the UI you insert a$watchin a$watch list. Imagine the$watchas something that is able to detect changes in the model it is watching (bear with me,this will be clear soon). Imagine you have this:

index.html
1
2
User: <input type="text" ng-model="user" /> Password: "password" "pass" /> 

Here we have$scope.user,which is bound to the first input,and we have$scope.pass,which is bound to the second one. Doing this we add two$watchto the$watch list.

controllers.js
2 3 4
app.controller('MainCtrl', function($scope) {  $scope.foo = "Foo";  world = "World"; }); 
index.html
1
Hello,{{ World }} 

Here,even though we have two things attached to the$scope,only one is bound. So in this case we only created one$watch.

controllers.js
3
people = [...]; }); 
index.html
4 5
<ul>  <li ng-repeat="person in people">  {{person.name}} - {{person.age}}  </li> </ul> 

How many$watchare created here? Two for each person (for name and age) in people plus one for theng-repeat. If we have 10 people in the list it will be(2 * 10) + 1,AKA21$watch.

So,everything that is bound in our UI using directives creates a$watch. Right,but when are those$watchcreated?

When our template is loaded,AKA in thelinking phase,the compiler will look for every directive and creates all the$watchthat are needed. This sounds good,but… now what?

$digest loop

Remember the extendedevent-loopI talked about? When the browser receives an event that can be managed by theangular contextthe$digestloop will be fired. This loop is made from two smaller loops. One processes the$evalAsyncqueue and the other one processes the$watchlist,which is the subject of this article.

What is that process about? The$digestwill loop through the list of$watchthat we have,asking this:

  • Hey
  • It is9
  • Alright,has it changed?
    • No,sir.
  • (nothing happens with this one,so it moves to the next)
  • You,monospace; font-size:0.8em; vertical-align:baseline; display:inline-block">Foo.
  • Has it changed?
    • Yes,it wasBar.
  • (good,we have a DOM to be updated)
  • This continues until every$watchhas been checked.
  • This is thedirty-checking. Now that all the$watchhave been checked there is something else to ask: Is there any$watchthat has been updated? If there is at least one of them that has changed,the loop will fire again until all of the$watchreport no changes. This is to ensure that every model is clean. Have in mind that if the loop runs more than 10 times,it will throw an exception to prevent infinite loops.

    When the$digest loopfinishes,the DOM makes the changes.

    Example:

    controllers.js
    5 6 7
    function() {  name = "Foo";   changeFoo = "Bar";  } }); 
    index.html
    {{ name }} <button ng-click="changeFoo()">Change the name</button>

    Here we have only one$watchbecause ng-click doesn’t create any watches (the function is not going to change :P).

    • We press the button.
    • The browser receives an event which will enter theangular context(I will explain why,later in this article).
    • The$digest loopwill run and will ask every$watchfor changes.
    • Since the$watchwhich was watching for changes in$scope.namereports a change,if will force another $digest loop.
    • The new loop reports nothing.
    • The browser gets the control back and it will update the DOM reflecting the new value of$scope.name

    The important thing here (which is seen as a pain-point by many people) is that EVERY event that enters theangular contextwill run a$digest loop. That means that every time we write a letter in an input,the loop will run checking every$watchin this page.

    Entering the angular context with $apply

    What says which events enter the angular context and which ones do not?$apply

    If you call$applywhen an event is fired,it will go through theangular-context,but if you don’t call it,it will run outside it. It is as easy as that. So you may now ask… That last example does work and I haven’t calledng-click,the event will be wrapped inside an$applycall. If you have an input withng-model="foo"and you write anf,the event will be called like this:$apply("foo = 'f';"),in other words,wrapped in an$applycall.

    When angular doesn’t use $apply for us

    This is the common pain-point for newcomers to Angular. Why is my jQuery not updating my bindings? Because jQuery doesn’t call$applyand then the events never enter theangular contextand then the$digest loopis never fired.

    Let’s see an interesting example:

    Imagine we have the following directive and controller:

    app.js
    7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
    directive('clickable',210)!important">function() {  return {  restrict: "E",  scope: {  foo: '=',0)!important">bar: '='  },0)!important">template: '<ul style="background-color: lightblue"><li>{{foo}}</li><li>{{bar}}</li></ul>',0)!important">link: scope, element,0)!important">attrs) {  element.bind('click',0)!important">scope.foo++;  bar++;  });  } }  });  foo = 0;  bar = 0; }); 

    It bindsfooandbarfrom the controller to show them in a list,then every time we click on the element,bothbarvalues are incremented by one.

    What will happen if we click on the element? Are we going to see the updates? The answer is no. No,because theclickevent is a common event that is not wrapped into an$applycall. So that means that we are going to lose our count? No.

    What is happening is that the$scopeis indeed changing but since that is not forcing a$digest loop,the$watchforfooand the one forbarare not running,so they are not aware of the changes. This also means that if we do something else that does run an$watchwe have will see that they have changed and then update the DOM as needed.

    Try it


    If we click on the directive (the blue zone) we won’t see any changes,but if we click on the button to update the string next to it,we suddenly see how many times we clicked on the directive. Just what I said,the clicks on the directive won’t trigger any$digest loopbut when the button is clicked on,monospace; font-size:0.8em; vertical-align:baseline; display:inline-block">ng-clickwill call$applyand it will run the$watchwe have are going to be checked for changes,and that includes the one forbar.

    Now you are thinking that this is not what you want,you want to update the bindings as soon as you click on the directive. That is easy,we just need to call$applylike this:

    6
    bar++;   $apply(); }); 

    $applyis a function of our$scope(orscopeinside a directive’s link function) so calling it will force a$digest loop(except if there is a loop in course,in that case it will throw an exception,which is a sign that we don’t need to call$applythere).

    Try it


    It works! But there is a better way for using$apply:

    $apply(bar++; }); })

    What’s the difference? The difference is that in the first version,we are updating the values outside theangular contextso if that throws an error,Angular will never know. Obviously in this tiny toy example it won’t make much difference,but imagine that we have an alert box to show errors to our users and we have a 3rd party library that does a network call and it fails. If we don’t wrap it inside an So if you want to use a jQuery plugin,be sure you call$applyif you need to run a$digest loopto update your DOM.

    Something I want to add is that some people “feel bad” having to call$applybecause they think that they are doing something wrong. That is not true. It is just Angular that is not a magician and it doesn’t know when a 3rd party library wants to update the bindings.

    Using $watch for our own stuff

    You already know that every binding we set has its own$watchto update the DOM when is needed,but what if we want our own watches for our purposes? Easy.

    Let’s see some examples:

    app.js
    9
    "Angular";   updated = -1;   $watch('name',0)!important">updated++;  }); }); 
    index.html
    <body ng-controller="MainCtrl"> "name" /> Name updated: {{updated}} times. </body>

    That is how we create a new$watch. The first parameter can be a string or a function. In this case it is just a string with the name of what we want to$scope.name(notice how we just need to usename). The second parameter is what is going to happen when$watchsays that our watched expression has changed. The first thing we have to know is that when the controller is executed and finds the Try it


    I initialized the$scope.updatedto-1because as I said,monospace; font-size:0.8em; vertical-align:baseline; display:inline-block">$watchwill run once when it is processed and it will put the$scope.updatedto 0.

    Example 2:

    app.js
    10
    updated = 0;   newValue,0)!important">oldValue) {  if (newValue === oldValue) { return; } // AKA first run  </body> 

    The second parameter of$watchreceives two parameters. The new value and the old value. We can use them to skip the first run that every$watchdoes. Normally you don’t need to skip the first run,but in the rare cases where you need it (like this one),this trick comes in handy.

    Example 3:

    app.js
    user = { name: "Fox" }; 'user',22)!important">return; } "user.name" </body>

    We want to$watchany changes in our$scope.userobject. Same as before but using an object instead of a primitive.

    Try it


    Uhm? It doesn’t work. Why? Because the$watchby default compares the reference of the objects. In example 1 and 2,every time we modify$scope.nameit will create a new primitive,so the$watchwill fire because the reference of the object is new and that is our change. In this new case,since we are watching$scope.userand then we are changing$scope.user.name,the reference of$scope.useris never changing because we are creating a new$scope.user.nameevery time we change the input,but the$scope.userwill be always the same.

    That is obviously not the desired case in this example.

    Example 4:

    app.js
    updated++; }, true); });
    index.html
    </body>

    Try it


    Now it is working! How? We added a third parameter to the$watchwhich is aboolto indicate that we want to compare the value of the objects instead of the reference. And since the value of$scope.useris changing when we update the$scope.user.namethe$watchwill fire appropriately.

    There are more tips & tricks with$watchbut these are the basics.

    Conclusion

    Well,I hope you have learnt how data-binding works in Angular. I guess that your first impression is that thisdirty-checkingis slow; well,that is not true. It is fast as lightning. But yes,if you have something like 2000-3000$watchin a template,it will become laggy. But I think that if you reach that,it would be time to ask an UX expert :P.

    Anyway,in a future version of Angular and with the release of EcmaScript 6,we will haveObject.observewhich will improve the$digest loopa lot. Meanwhile there are some tips & tricks that I am going to cover in a future article.

    On the other hand,this topic is not easy and if you find that I missed something important or there is anything completely wrong,please fill an issue at Github or write a pull request :).

    Aug 6th,2013$apply,$digest,$watch,advanced

    (编辑:李大同)

    【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

      推荐文章
        热点阅读