AngularJS监听ng-repeat渲染完成的两种方法

前端之家收集整理的这篇文章主要介绍了AngularJS监听ng-repeat渲染完成的两种方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了AngularJS监听ng-repeat渲染完成的两种方法分享给大家供大家参考,具体如下:

监听ng-repeat渲染完成有两种方法

一、最实用的方法:

对应作用域controller:

自定义指令directive:

二、使用广播事件

文件中的代码 * Setup general page controller */ MetronicApp.controller('simpleManageController',['$rootScope','$scope','settings','$http',function($rootScope,$scope,settings,$http) { $scope.$on('ngRepeatFinished',function (ngRepeatFinishedEvent) { //下面是在table render完成后执行的js FormEditable.init(); Metronic.stopPageLoading(); $(".simpleTab").show(); }); }); MetronicApp.directive('onFinishRenderFilters',function ($timeout) { return { restrict: 'A',attr) { if (scope.$last === true) { $timeout(function() { scope.$emit('ngRepeatFinished'); }); } } }; });

HTML

更多关于AngularJS相关内容感兴趣的读者可查看本站专题:《》、《》及《

希望本文所述对大家AngularJS程序设计有所帮助。

原文链接:https://www.f2er.com/js/34156.html

猜你在找的JavaScript相关文章