为什么ViewChildren不能使用动态组件?

时间:2017-07-26 14:13:21

标签: angular angular2-directives

我正在搜索使用ngComponentOutlet将值插入动态组件的方法。我在此之前的最后一次尝试是:

在parentComponent.html中:

<ng-container *ngComponentOutlet="getButtonComponent()"></ng-container>

并在parentComponent.ts

@ViewChildren(ButtonComponent, { read: ViewContainerRef}) list: QueryList<ButtonComponent>;

并且列表是空的,它不应该是正确的吗? 它应该是获取和设置动态创建的组件的解决方法

0 个答案:

没有答案