Home > Web Front-end > JS Tutorial > body text

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

php中世界最好的语言
Release: 2018-03-12 17:00:56
Original
2131 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:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!