angular 2+ 如何在使用 createComponent 工厂时使用和监听输出发射器

angular 2+ how to use and listen output emiter when use createComponent factory

我在 ParentComp 中动态创建组件:

const factory = this.resolver.resolveComponentFactory<ChildComp>(component);
this.componentRef = this.container.createComponent(factory);
this.componentRef.instance.dataConfig = dataTab.dataConfig;

现在需要从这个 ChildComp 发出一些结果并从 ParentComp 听这个@output。

我怎样才能发出这些数据?

这可以很容易地实现,如下所示

在子组件中

 @Output() close = new EventEmitter<any>();

  emitEventMethodInChild() {
    this.close.emit('close')
  }

在父组件中

this.componentRef.instance.close.subscribe(response => {
    console.log('response from child to parent',response);
   // Here you can receive data output form child to parent component
}

在这里,在上面的例子中,我将关闭作为事件发射器。

希望对您有所帮助!