我有像
这样的角度组件<ul className="product-gallery-thumbs__list">
{images.map(function(image, imageIndex){
return <img key={ imageIndex } src={ image } />
})}
</ul>
在我的父组件的ngAfterViewInit中,我试图访问子组件,如
<my-parent>
<my-child ng-repeat="option in field.options">
<!-- more html -->
</my-child>
</my-parent>
但不能这样做。 注意:$ element服务被注入组件的类构造函数..
当我调试这个时,我发现当ngAfterViewInit被执行时,DOM没有我的子组件..
早些时候..这个逻辑在指令的编译功能中运行正常..但是现在我将它转换为Angular并且卡在这里。任何帮助都将受到高度赞赏..