Angular:在父级中访问子组件的属性

时间:2017-07-28 21:43:24

标签: angularjs

我有像

这样的角度组件
<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并且卡在这里。任何帮助都将受到高度赞赏..

0 个答案:

没有答案