我有很多这样的片段:
<mat-form-field>
<mat-label>Name</mat-label>
<input matInput formControlName="name" />
<mat-error>{{ form.controls['name'].errors | errorMessage }}</mat-error>
</mat-form-field>
由于mat-error
行太冗长,是否可以自动添加(使用input
或mat-form-field
的指令)?如果是这样,该方法将是什么?我一直在玩ViewContainerRef
和ComponentFactoryResolver
,在这种情况下没有有用的结果...