gpt4 book ai didi

angular - 如何以 Angular 检索组件的所有子组件

转载 作者:行者123 更新时间:2023-12-02 08:07:29 24 4
gpt4 key购买 nike

我有一个 Angular 组件,我需要获取该组件的所有子组件。如何才能做到这一点?

最佳答案

一种可能的解决方案(可能有更好的解决方案)是使用 ViewChildren ,这样您就可以访问具有指定名称的所有子组件:

export class YourComponent {
@ViewChildren(ChildComponentFoo) private _childrenFoo: QueryList<ChildComponentFoo>;
@ViewChildren(ChildComponentBar) private _childrenBar: QueryList<ChildComponentBar>;

/* ... */
}

这是一个例子: STACKBLITZ

关于angular - 如何以 Angular 检索组件的所有子组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50179318/

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