Home > Web Front-end > JS Tutorial > Detailed explanation of the use of $apply() in angularjs

Detailed explanation of the use of $apply() in angularjs

php中世界最好的语言
Release: 2018-03-12 17:00:56
Original
2208 people have browsed it

This time I will bring you a detailed explanation of the use of $apply() in angularjs, what are the precautions when using $apply() in angularjs, the following is a practical case, one Get up and take a look.

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <title>Document</title></head><body ng-app="myApp" ng-controller="mainController">
    <p>{{a}}</p>
    <script src="angular.min.js"></script>
    <script>
        angular.module(&#39;myApp&#39;,[]).controller(&#39;mainController&#39;,function($scope){
            $scope.a = 100;
            setTimeout(function(){
                $scope.$apply(function(){
                    $scope.a = 200;
                });
            },500);
        });    </script></body></html>
Copy after login

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to the php Chinese website Other related articles!

Recommended reading:

Detailed explanation of the use of scopel directive in angular

Detailed explanation of the use of Angular Material

What are the naming rules for id selectors in css

The above is the detailed content of Detailed explanation of the use of $apply() in angularjs. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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
Latest Issues
What are JavaScript hook functions?
From 1970-01-01 08:00:00
0
0
0
What is JavaScript garbage collection?
From 1970-01-01 08:00:00
0
0
0
c++ calls javascript
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template