下面是我创建动态模块的初始代码:
protected createComponentModule(componentType: any) { @NgModule({ imports: [ ComponentModule ],declarations: [ componentType ],}) class RuntimeComponentModule { } return RuntimeComponentModule; }
No NgModule Metadata found for ‘RuntimeComponentModule’
我通过更改下面的代码找到了一些Articals的解决方案,我的错误消失了:
default class RuntimeComponentModule { }
但是它提出了新的错误:
Modifiers cannot appear here
它不允许我在方法中装饰@NgModule.
目前,官方不支持使用动态组件或模块创建与AoT一起使用
原文链接:https://www.f2er.com/angularjs/143797.html有关可能的解决方法,请参阅https://github.com/angular/angular/issues/11780的讨论.