


A brief discussion on the method of implementing two-way binding in angular.js $watch $digest $apply_AngularJS
Features in Angular.js, two-way binding.
What a magical function that allows changes in the view to be directly reflected in the data. Changes in the data are notified to the view in real time. How to do it?
This is thanks to the following 3 important methods of scope:
$watch
$digest
$apply
What are their differences? Let’s introduce them:
$watch
This is a listener that listens to data on the scope
Method description:
$scope.$watch('参数',function(newValue,oldValue){ //逻辑处理 })
We created a listener above.
‘Parameter’ is an object (or an attribute of an object) under the $scope object. Note that this is in string form.
Suppose you want to monitor the $scope.name property.
$scope.$watch('name',function(newValue,oldValue){ //逻辑处理 })
As in the above code, ‘name’ needs quotes
The parameter is followed by a callback function. The callback function parameter returns the monitored attribute, the new value after the change, and the old value before the previous change.
$digest
He is responsible for checking whether the data in the scope has changed. If a certain attribute changes, it will immediately notify the listener of this attribute (the listener registered by $watch), trigger the listener, and execute the callback function.
$apply
This method is very similar to $digest, $digest checks all data in the scope
$apply is equivalent to checking all data in rootScope, it will check all data from parent to child
$apply() == $rootScope.$digest()
The $apply() method has two forms.
The first one accepts a function as a parameter.
This triggers the $digest function and executes the function
The second type does not accept any parameters.
This just triggers a $digest parent-to-child cycle
In Angular.js, $digest will not be called directly, but $scope.$apply() is used instead
I didn’t set the monitor, why can the view and data be bound in two directions
For example, a text box ng-model="name"
At this time, there is actually an attribute name under the $scope object to correspond to the two-way binding with the above view
How to achieve it?
In fact, when we define ng-model="name" or ng-bind="name" or {{name}}
At this time, angular.js will automatically set a listener for the "name" attribute on the $scope model:
$scope.$watch('name', function(newValue, oldValue) { //监听 name 属性的变化 });
It turns out that angular.js helps us automatically create a listener, so this property and $scope.name data will be two-way bound in real time.
Of course, sometimes you will find that the data has changed. But the UI is not refreshed. Is the two-way binding invalid?
No
It’s just that when the $scope model traverses the digest loop, your data has not been returned yet,
For example, when calling a method asynchronously, the data returned by callbac
For example, you set a scheduled trigger function in setTimeout, and then modify the model data
In short, the digest cycle of the $scope model was missed, resulting in the model not notifying the UI to refresh according to new data.
What should I do if I encounter such a problem?
We have to manually call digest to check the data in a loop to achieve two-way binding
As we have said above, usually do not call the digest method directly, but manually call the $apply method to indirectly trigger the $digest loop.
As follows:
setTimeout(function() { $scope.name= '一介布衣'; $scope.$apply(); }, 2000);
The problem is here, it’s time to manually call the apply method
So far, angular.js has automatically implemented the $apply() method for some directives and services.
For example, ng-click, ng-model, $timeout service, $http service, etc.
After calling, angular.js will automatically call $apply() for us to achieve two-way data binding.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

You may have encountered the problem of green lines appearing on the screen of your smartphone. Even if you have never seen it, you must have seen related pictures on the Internet. So, have you ever encountered a situation where the smart watch screen turns white? On April 2, CNMO learned from foreign media that a Reddit user shared a picture on the social platform, showing the screen of the Samsung Watch series smart watches turning white. The user wrote: "I was charging when I left, and when I came back, it was like this. I tried to restart, but the screen was still like this during the restart process." Samsung Watch smart watch screen turned white. The Reddit user did not specify the smart watch. Specific model. However, judging from the picture, it should be Samsung Watch5. Previously, another Reddit user also reported

Angular.js is a freely accessible JavaScript platform for creating dynamic applications. It allows you to express various aspects of your application quickly and clearly by extending the syntax of HTML as a template language. Angular.js provides a range of tools to help you write, update and test your code. Additionally, it provides many features such as routing and form management. This guide will discuss how to install Angular on Ubuntu24. First, you need to install Node.js. Node.js is a JavaScript running environment based on the ChromeV8 engine that allows you to run JavaScript code on the server side. To be in Ub

This article will give you an in-depth understanding of Angular's state manager NgRx and introduce how to use NgRx. I hope it will be helpful to you!

How to use monaco-editor in angular? The following article records the use of monaco-editor in angular that was used in a recent business. I hope it will be helpful to everyone!

Do you know Angular Universal? It can help the website provide better SEO support!

The Angular project is too large, how to split it reasonably? The following article will introduce to you how to reasonably split Angular projects. I hope it will be helpful to you!

How to customize the angular-datetime-picker format? The following article talks about how to customize the format. I hope it will be helpful to everyone!

We all know that the function of the listener is to trigger every time the reactive state changes. In the combined API, we can use the watch() function and watchEffect() function. When you change the reactive state, it may be triggered at the same time. Trigger Vue component updates and listener callbacks. By default, user-created listener callbacks will be called before the Vue component is updated. This means that the DOM you access in the listener callback will be the state it was in before it was updated by Vue. So, let’s take a look, how can we make good use of them? What's the difference between them? The watch() function watch needs to listen to a specific data source, such as listening to a ref. The first parameter of watch can be
