2

我正在使用 ng-container 迭代列表并创建组件

    <ng-container *ngFor="let f of optionsList; let i = index;">

                <!-- component-->
                <app-component  #fieldcmp  *ngIf="isAppComponent(f)" ></app-field>


                <!--another components-->
                <app-anoter-component1 *ngIf="isAnotherComponent1(f)"> </app-anoter-component1>
...
                <app-anoter-componentn *ngIf="isAnotherComponentn(f)"> </app-anoter-componentn>

            </ng-container>

我会列出 ng-container 中的 References 组件。

我尝试使用 @ViewChildren('#fieldcmp') fieldsList: QueryList; 和@ContentChildren('#fieldcmp') fieldsList: QueryList; 在父组件内部,但如果我尝试访问 ngafterViewInit,我没有得到任何元素

ngAfterViewInit() {
        this.fieldsList.forEach((child) => {  /* some logic....*/});
    }

有人可以帮助我吗?谢谢

------------更新------------

用@ViewChildren('fieldcmp') 修复后,我有一个ElementRef 列表,不是我的AppComponent。我用它和所有的工作

this.filedsList 
            .forEach((child) => { atLeastOneRequired = atLeastOneRequired || (<ReusableFieldComponent> child).isRequired();
    });

谢谢你的帮助

4

2 回答 2

6

只需#从选择器中删除符号ViewChildren- 仅在模板中使用:

@ViewChildren('fieldcmp') fieldsList: QueryList;

或者您可以使用组件类作为选择器:

@ViewChildren(HelloComponent) fieldsList: QueryList<HelloComponent>;

在这里工作 stackblitz:https ://stackblitz.com/edit/angular-xeudlp

于 2018-09-13T10:59:30.637 回答
0

尝试创建和清空directive,然后查询您的指令并阅读ElementRef.

@ViewChildren(MyDirective, {read: Element Ref}) Kids: QueryList<ElementRef>;

我面前没有我的电脑,但这就是我的想法。

于 2018-09-13T11:03:49.027 回答