您的位置:首页 > Web前端 > AngularJS

angular指令监听ng-repeat渲染完成

2017-09-09 11:23 721 查看
今天工作中遇到需要用到ng-repeat遍历渲染完后执行某个操作,angular本身并没有提供监听ng-repeat渲染完成的指令,所以需要自己创建自定义指令。

在ng-repeat模板实例内部会暴露出一些特殊属性$index/$first/$middle/$last/$odd/$even,$index会随着每次遍历(从0开始)递增,当遍历到最后一个时,$last的值为true,所以可以通过判断$last的值来监听ng-repeat的执行状态,

怎么在遍历过程中拿到$last的值:自定义指令

var app = angular.module('app',[]);

app.directive('repeatFinish',function(){
return {
link: function(scope,element,attr){
console.log(scope.$index)
if(scope.$last == true){
scope.$eval( attr.repeatFinish );
}
}
}
})

app.controller('appCtrl',function($scope,$element){
$scope.arr = [1,2,3,4,5,6];
$scope.tip = '';

//定义repeat完成后要执行的方法,方法名可自行定义
$scope.repeatDone = function(){
$scope.tip = 'ng-repeat完成,我要开始搞事情了!!!';
     //执行自己要执行的事件方法
}
});


 

调用时使用angular调用指令的方法就可以了。

<div ng-repeat="i in arr" repeat-finish="repeatDone();">
<p ng-bind="i"></p>
</div>


 

 Demo
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: