Angular2:动态组件创建:AOT编译

前端之家收集整理的这篇文章主要介绍了Angular2:动态组件创建:AOT编译前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
下面是我创建动态模块的初始代码
protected createComponentModule(componentType: any) {

    @NgModule({
        imports: [
            ComponentModule 
        ],declarations: [
            componentType
        ],})
    class RuntimeComponentModule {
    }
    return RuntimeComponentModule;

}

虽然我将在下面的代码上实现AOT,但它会给我一个错误

No NgModule Metadata found for ‘RuntimeComponentModule’

我通过更改下面的代码找到了一些Articals的解决方案,我的错误消失了:

default class RuntimeComponentModule 
{
}

但是它提出了新的错误

Modifiers cannot appear here

它不允许我在方法中装饰@NgModule.

目前,官方不支持使用动态组件或模块创建与AoT一起使用

有关可能的解决方法,请参阅https://github.com/angular/angular/issues/11780的讨论.

原文链接:https://www.f2er.com/angularjs/143797.html

猜你在找的Angularjs相关文章