Angular2 中的动态模板 "transclusion"

Dynamic template "transclusion" in Angular2

我正在努力实现这样的目标: 我有一个名为 ObjectTypeAObjectTypeBObjectTypeC 的模型 class。 还有一个工厂ComponentFactory,根据传入的对象类型会创建不同的组件:

ComponentFactory.ts

export interface ComponentFactoryInterface {

    static CreateComponent(obj: CommonSuperObject)

}

@Injectable()
export class ComponentFactory {

    public static CreateComponent(obj: CommonSuperObject){

        if (obj instanceof ObjectTypeA){
            return ObjectComponentA()
        }else if (obj instanceof ObjectTypeB){
            return ObjectComponentB()
        }

    }
}

在模板中我想做这样的事情:

main_template.html

<components>
  <component *ngFor="#obj in objects">
     <!-- insert custom component template here -->
  </component>
</components>

如何动态插入关联组件?

我可以做这样的事情(这不是我喜欢的方式):

<components>
  <!-- loop over component models -->
  <custom-component-a *ngIf="models[i] instanceof ObjectTypeA">
  </custom-component-a>
  <custom-component-b *ngIf="models[i] instanceof ObjectTypeB">
  </custom-component-b>
</components>

但这在很多层面上对我来说似乎都是错误的(如果我添加另一种组件类型,我将不得不修改此代码和工厂代码)。

编辑 - 工作示例

constructor(private _contentService: ContentService, private _dcl: DynamicComponentLoader, componentFactory: ComponentFactory, elementRef: ElementRef){

    this.someArray = _contentService.someArrayData;
    this.someArray.forEach(compData => {
    let component = componentFactory.createComponent(compData);
        _dcl.loadIntoLocation(component, elementRef, 'componentContainer').then(function(el){
            el.instance.compData = compData;
        });
    });

}

更新

DCL 已被弃用一段时间了。请改用 ViewContainerRef.createComponent。有关示例(使用 Plunker),请参见

原创

您可以使用 ngSwitch(类似于您自己的解决方法但更简洁)或 DynamicComponentLoader

另见