动态引导应用程序组件是否可能取决于元素是否存在。
想要类似......
export class AppModule {
constructor() {
}
ngDoBootstrap(appRef: ApplicationRef) {
for(let component of components) {
if(document.querySelector(component.selector)){
appRef.bootstrap(component);
}
}
}
}
答案 0 :(得分:0)
不,您需要检查自己元素是否在DOM中可用,然后调用platformBrowserDynamic().bootstrapModule(AppModule);
或appRef.bootstrap(component);
或以其他方式跳过调用。
另见https://github.com/angular/angular/issues/11730#issuecomment-252677321