gpt4 book ai didi

angular - 如何动态获取子组件而不是使用@ViewChild

转载 作者:太空狗 更新时间:2023-10-29 19:36:13 25 4
gpt4 key购买 nike

基本上不是这样做:

class Controller implements AfterViewInit{
@ViewChild(IconComponent)
iconComponent: IconComponent;

ngAfterViewInit() {
iconComponent.save();
}

}

我想要这样的组件:

class Controller implements AfterViewInit{

ngAfterViewInit() {
const iconComponent = someRef.get(IconComponent); // where to get this component from
iconComponent.save()
}

}

我如何实现这一目标?

我问这个问题是因为我在运行时而不是编译时获取组件类型。

最佳答案

为什么不使用提供的 ComponentFactoryResolver 创建组件?

通过这种方式可以获得其componentRef并管理其实例。

这是 ComponentFactoryResolver 的文档你可以找到一个很好的实现 example .

关于angular - 如何动态获取子组件而不是使用@ViewChild,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55606777/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com