Angular 2动态引导应用程序组件

时间:2016-12-13 14:29:18

标签: javascript angular typescript

动态引导应用程序组件是否可能取决于元素是否存在。

想要类似......

export class AppModule { 

constructor() {

}   

ngDoBootstrap(appRef: ApplicationRef) {
    for(let component of components) {
       if(document.querySelector(component.selector)){
           appRef.bootstrap(component);
       }
    }
}

}

1 个答案:

答案 0 :(得分:0)

不,您需要检查自己元素是否在DOM中可用,然后调用platformBrowserDynamic().bootstrapModule(AppModule);appRef.bootstrap(component);或以其他方式跳过调用。

另见https://github.com/angular/angular/issues/11730#issuecomment-252677321