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

How to listen to rendering using AngularJS

php中世界最好的语言
Release: 2018-06-14 15:33:47
Original
1280 people have browsed it

This time I will show you how to use AngularJS to monitor rendering, and what are the precautions for using AngularJS to monitor rendering. The following is a practical case, let's take a look.

Actually it is formed through the ng-repeat of Angular, the code in html It is:

<li ng-repeat="for list in lists()" id="{{ list.id }}">{{ list.name }}</li>
Copy after login

Create a new listbutton at the bottom of the picture. After clicking, a new will be push in the lists array. list object, the page will be automatically rendered at this time, and a <li> will be added accordingly, as follows:

NoteMyList1 has always been in the active state (class="active"). My requirement is to add the list after adding it. list is set to active, that is, after adding it, it becomes the following style:

At first I tried to add it in

In the function corresponding to button, after push the new list object into the lists array, use document.getElementById to obtain it Go to the newly added <li> object, and then add a class="active" to it. It turns out that the obtained DOM object is null, after searching, we found that the reason is: after pushing the push object to the lists array, the array changes, and all <li> will be re-rendered. After push is completed, immediately look for the newly added DOM object. DOM has not been rendered yet, so it cannot be obtained. The solution is: use the AngularJS instruction to monitor whether ng-repeat is completed, and after the rendering is completed, get the new <li> object , there is a lot of related content on this Internet, the code is as follows:

myapp.directive('repeatFinish', function ($timeout) {
  return {
    restrict: "C",
    link: function (scope, element, attr) {
      if(scope.$last === true){
        $timeout(function () {
          scope.change_list(element[0]);
        }, 10);
      }
    }
  }
});
Copy after login
I believe you have mastered the method after reading the case in this article. For more exciting content, please pay attention to other related articles on the PHP Chinese website!

Recommended reading:

JS to make a floating layer pop-up effect when the mouse passes over the text

How to use Angular component interaction

The above is the detailed content of How to listen to rendering using 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!