Home Web Front-end JS Tutorial A brief discussion on the method of implementing two-way binding in angular.js $watch $digest $apply_AngularJS

A brief discussion on the method of implementing two-way binding in angular.js $watch $digest $apply_AngularJS

May 16, 2016 pm 03:36 PM
angular apply watch

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){
 //逻辑处理
})
Copy after login

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){
 //逻辑处理
})
Copy after login

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

in the parameter once

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 属性的变化
});
Copy after login

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);
Copy after login

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.

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Users encounter rare glitches: Samsung Watch smartwatches suddenly experience white screen issues Users encounter rare glitches: Samsung Watch smartwatches suddenly experience white screen issues Apr 03, 2024 am 08:13 AM

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

How to install Angular on Ubuntu 24.04 How to install Angular on Ubuntu 24.04 Mar 23, 2024 pm 12:20 PM

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

Detailed explanation of angular learning state manager NgRx Detailed explanation of angular learning state manager NgRx May 25, 2022 am 11:01 AM

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!

A brief analysis of how to use monaco-editor in angular A brief analysis of how to use monaco-editor in angular Oct 17, 2022 pm 08:04 PM

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!

An article exploring server-side rendering (SSR) in Angular An article exploring server-side rendering (SSR) in Angular Dec 27, 2022 pm 07:24 PM

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

What should I do if the project is too big? How to split Angular projects reasonably? What should I do if the project is too big? How to split Angular projects reasonably? Jul 26, 2022 pm 07:18 PM

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!

Let's talk about how to customize the angular-datetime-picker format Let's talk about how to customize the angular-datetime-picker format Sep 08, 2022 pm 08:29 PM

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!

How vue3 data monitors watch/watchEffect How vue3 data monitors watch/watchEffect May 12, 2023 pm 06:31 PM

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

See all articles