ng-repeat finish event

前端 未结 15 2633
盖世英雄少女心
盖世英雄少女心 2020-11-22 02:15

I want to call some jQuery function targeting div with table. That table is populated with ng-repeat.

When I call it on

$(document).r         


        
15条回答
  •  名媛妹妹
    2020-11-22 03:00

    Indeed, you should use directives, and there is no event tied to the end of a ng-Repeat loop (as each element is constructed individually, and has it's own event). But a) using directives might be all you need and b) there are a few ng-Repeat specific properties you can use to make your "on ngRepeat finished" event.

    Specifically, if all you want is to style/add events to the whole of the table, you can do so using in a directive that encompasses all the ngRepeat elements. On the other hand, if you want to address each element specifically, you can use a directive within the ngRepeat, and it will act on each element, after it is created.

    Then, there are the $index, $first, $middle and $last properties you can use to trigger events. So for this HTML:

    thing {{thing}}

    You can use directives like so:

    angular.module('myApp', [])
    .directive('myRepeatDirective', function() {
      return function(scope, element, attrs) {
        angular.element(element).css('color','blue');
        if (scope.$last){
          window.alert("im the last!");
        }
      };
    })
    .directive('myMainDirective', function() {
      return function(scope, element, attrs) {
        angular.element(element).css('border','5px solid red');
      };
    });
    

    See it in action in this Plunker. Hope it helps!

提交回复
热议问题