我正在使用Angular 6,并且我想根据instructions实现组件的动态添加,但出现错误:“无法读取未定义的属性'create'。”
component.html
<mat-card>
<mat-card-header>
<mat-card-title>...</mat-card-title>
</mat-card-header>
<mat-card-content>
<ng-template answerHost></ng-template>
</mat-card-content>
</mat-card>
component.ts
@ViewChild(AnswerHostDirective) answerHost: AnswerHostDirective;
private stepAnswerType1: ComponentFactory<StepAnswerType1Component>;
private stepAnswerType2: ComponentFactory<StepAnswerType2Component>;
private stepAnswerType3: ComponentFactory<StepAnswerType3Component>;
/* ... */
changeStep(id: number) {
let viewContainerRef = this.answerHost.viewContainerRef;
let componentRef;
if (this.step.type == 1) {
componentRef = viewContainerRef.createComponent(this.stepAnswerType1);
}
if (this.step.type == 2) {
componentRef = viewContainerRef.createComponent(this.stepAnswerType2);
}
if (this.step.type == 3) {
componentRef = viewContainerRef.createComponent(this.stepAnswerType3);
}
}
指令
import { Directive, ViewContainerRef } from '@angular/core';
@Directive({
selector: '[answerHost]'
})
export class AnswerHostDirective {
constructor(public viewContainerRef: ViewContainerRef) { }
}
我尝试用对组件ID的引用替换指令,但出现相同的错误。 component.html
<mat-card>
<mat-card-header>
<mat-card-title>...</mat-card-title>
</mat-card-header>
<mat-card-content>
<ng-template #answerContainer></ng-template>
</mat-card-content>
</mat-card>
component.ts
@ViewChild('answerContainer', { read: ViewContainerRef }) answerContainer: ViewContainerRef;
private stepAnswerType1: ComponentFactory<StepAnswerType1Component>;
private stepAnswerType2: ComponentFactory<StepAnswerType2Component>;
private stepAnswerType3: ComponentFactory<StepAnswerType3Component>;
/* ... */
changeStep(id: number) {
if (this.step.type == 1) {
componentRef = this.answerContainer.createComponent(this.stepAnswerType1);
}
if (this.step.type == 2) {
componentRef = this.answerContainer.createComponent(this.stepAnswerType2);
}
if (this.step.type == 3) {
componentRef = this.answerContainer.createComponent(this.stepAnswerType3);
}
}
可能是什么问题?
已修复 我更新了部分代码。 component.ts
import { StepAnswerType1Component } from './step-answer-type1/step-answer-type1.component';
import { StepAnswerType2Component } from './step-answer-type2/step-answer-type2.component';
import { StepAnswerType3Component } from './step-answer-type3/step-answer-type3.component';
/* some code */
@ViewChild('answerContainer', { read: ViewContainerRef }) answerContainer: ViewContainerRef;
/* some code */
changeStep(id: number) {
let componentRef, componentFactory;
if (this.step.type == 1) {
componentFactory = this.componentFactoryResolver.resolveComponentFactory(StepAnswerType1Component);
}
if (this.step.type == 2) {
componentFactory = this.componentFactoryResolver.resolveComponentFactory(StepAnswerType2Component);
}
if (this.step.type == 3) {
componentFactory = this.componentFactoryResolver.resolveComponentFactory(StepAnswerType3Component);
}
componentRef = viewContainerRef.createComponent(componentFactory);
}
答案 0 :(得分:1)
确保在“ ngAfterViewInit()”中调用此方法“ changeStep”。