Angularjs   发布时间:2022-04-20  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了angular – 从ng-content访问@ViewChild模板大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以将模板与ng-content结合使用,如下所述:

app组件:@H_944_2@

<table-column>
  <template #template let-item="item">
    <input type="text" [(ngModel)]="item.foo" />
  </template>
</table-column>

表列组件:@H_944_2@

@Component({
  SELEctor: 'table-column',template: '<ng-content></ng-content>'
})
export class TablecolumnComponent implements OnInit {
  @ViewChild('template') template;  

  ngOnInit() {
    console.log(this.templatE); // undefined
    // create column object with template and different Metadata...
  });      
}

Plunker?@H_944_2@

我使用不同的生命周期钩子(ngOnInit,ngAfterViewInit)来定义问题…@H_944_2@

如果你想在Light DOM中搜索,那么你需要使用@ContentChild并等到ngAfterContenTinit挂钩
@ContentChild('template') template;  

ngAfterContenTinit() {
  console.log(this.templatE);
});

也可以看看@H_944_2@

> What’s the difference between @ViewChild and @ContentChild?@H_944_2@

大佬总结

以上是大佬教程为你收集整理的angular – 从ng-content访问@ViewChild模板全部内容,希望文章能够帮你解决angular – 从ng-content访问@ViewChild模板所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。