我在指令模板中使用了ng-repeat
。
myApp.directive("test", function () {
return {
restrict: 'C',
scope: {
bindVar: '='
},
template: '<div>\
<div class="item" ng-repeat="sel in bindVar">{{sel.display}}</div>\
</div>',
link: function ($scope, element, attrs) {
// setTimeout(function() {
alert($('.item').length); // <--- RETURNS 0, IF I ADD TIMEOUT RETURNS 3
// },0);
} // of link
} // of return
});
http://jsfiddle.net/foreyez/t4590zbr/
但是,当调用link()
函数时,我似乎无法访问已创建的项目。为了做到这一点,我需要将超时设置为0(之后它可以工作)。
我在以下文章中读到了这一点:http://lorenzmerdian.blogspot.com/2013/03/how-to-handle-dom-updates-in-angularjs.html
我还看到了类似Stack Overflow的答案,其中OP将Timeout标记为答案:DOM elements not ready in AngularJS Directive's link() function
但是c&#39; mon,还有另一种方式!
我指责这个hacky解决方案是错误的,并且当通过指令创建DOM时,angular会以某种方式提供回调。或者我真的依赖...超时? (真的吗?:/)
答案 0 :(得分:4)
$timeout
是使用内联template
(而不是templateUrl
)时解决此问题的合法方法。它不会造成竞争条件。
会发生什么,Angular遍历DOM并收集指令及其前后链接功能(通过编译指令)。然后,执行每个节点(即DOM元素)的每个指令的链接函数。
通常,节点的模板(指令适用的模板)已经是DOM的一部分。因此,如果您有以下指令:
.directive("foo", function(){
return {
template: '<span class="fooClass">foo</span>',
link: function(scope, element){
// prints "<span class="fooClass">foo</span>"
console.log(element.html());
}
}
}
它可以找到$(".fooClass")
元素。
但是,如果指令使用transclude: 'element'
,如ng-if
(ngIf.js)和ng-repeat
(ngRepeat.js)指令,Angular会将指令重写为评论(compile.js),所以$(".item")
(在您的示例中)在ng-repeat
放置之前不存在。他们在scope.$watch
函数(ngIf.js)中这样做,具体取决于他们正在观看的值,这可能发生在下一个摘要周期。因此,即使您的后链接功能运行,您搜索的实际元素仍然不存在。
.directive("foo", function(){
return {
template: '<span ng-if="true" class="fooClass">foo</span>',
link: function(scope, element){
// prints "<!-- ngIf: true -->"
console.log(element.html());
}
}
}
但将在那里 - 肯定 - 当$timeout
运行时。
答案 1 :(得分:1)
我这样做的方法是使用另一个指令。举个例子:
.directive('elementReady', function() {
return {
restrict: 'A',
link: function(scope, elem, attr) {
//In here, you can do things like:
if(scope.$last) {
//this element is the last element in an ng-repeat
}
if(scope.$first) {
//first element in ng-repeat
}
//do jQuery and javascript calculations (elem has been added to the DOM at this point)
}
};
});
<table class="box-table" width="100%">
<thead>
<tr>
<th class='test' scope="col" ng-repeat="column in listcolumns" element-ready>{{column.title}}</th>
</tr>
</thead>
</table>
显然,您需要自定义如何将这些事件传播到外部作用域($ emit,通过绑定函数等)。
答案 2 :(得分:1)
采取Joe的答案以及我在stackoverflow上找到的另一个答案我能够通过以下方式实现:
myApp.directive('myRepeatDirective', function() {
return function(scope, element, attrs) {
if (scope.$last){
scope.$emit('LastElem');
}
};
});
然后在我原来的链接功能中:
$scope.$on('LastElem', function(event){
alert($('.item').length);
});
和模板看起来像:
<div>
<div class="item" ng-repeat="sel in bindVar" my-repeat-directive>{{sel.display}}</div>
</div>
http://jsfiddle.net/foreyez/t4590zbr/3/
但是我仍然不喜欢这个解决方案..似乎有点不好意思