我正在努力实现这样的目标:
我有一个名为ObjectTypeA
、ObjectTypeB
和ObjectTypeC
的模型类。
还有一个factoryComponentFactory
,它基于传入的对象类型创建不同的组件:
组件工厂
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()
}
}
}
在模板中,我希望执行以下操作:
主模板.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),请参见Angular 2 dynamic tabs with user-click chosen components
起初的
您可以使用ngSwitch
(类似于您自己的解决方案,但更简洁)或DynamicComponentLoader
也见
https://angular.io/docs/ts/latest/api/core/DynamicComponentLoader-class.html
How to use angular2 DynamicComponentLoader in ES6?