angular.module('studentModule').directive('repeatFinish',function(){ return { link: function(scope,element,attr){ if(scope.$last == true){ scope.$eval( attr.repeatFinish ); } if( scope.$last == false && scope.$index == 0 ) { scope.$eval( attr.repeatFinish ); } } }; });
主要是在网上抄的,但是我加了写容错,有需要的拿走,但需要根据自己需求的实际情况,对容错部分进行处理