我有一个ngFor
,它为每个步骤“创建”一个组件。
我正在为这些组件使用属性/值选择器。
我的问题是我的组件模板/内容未插入。
这里是ngFor
:
<mat-step *ngFor="let step of steps" [formGroup]="form">
<div [attr.step]="step"></div>
</mat-step>
我的组件装饰器:
@Component({
selector: '[step=general-engine-info]',
templateUrl: './general-engine-info.component.html',
styleUrls: ['./general-engine-info.component.scss']
})
但这似乎不起作用。
当我尝试使用文本而不是step
变量模拟结果时,它会起作用:
<div step="general-engine-info"></div>
<div [attr.step]="step"></div>
只有第一个div插入了内容:
有什么主意吗?谢谢。