2

此代码工作正常且正常(没有 ngTemplateOutlet):

<mat-form-field [formGroup]="formGroup">
    <input matInput type="text"
        [formControlName]="fControlName"
    >
  <ng-container *ngIf="isShowErrors()" ngProjectAs="mat-error">
    <ng-container *ngFor="let error of showSMErrors" >
      <mat-error>{{ error.message }}</mat-error>
    </ng-container>
  </ng-container>
</mat-form-field>

但是这段代码不能正常工作(使用 ngTemplateOutlet),为什么?(只需像普通的红色文本一样查看error.message):

<mat-form-field [formGroup]="formGroup">
    <input matInput type="text"
        [formControlName]="fControlName"
    >
  <ng-container *ngTemplateOutlet="showErrorsTemplate"></ng-container>
</mat-form-field>

<ng-template #showErrorsTemplate ngProjectAs="mat-error">
  <ng-container *ngIf="isShowErrors()" >
    <ng-container *ngFor="let error of showSMErrors" >
      <mat-error>{{ error.message }}</mat-error>
    </ng-container>
  </ng-container>
</ng-template>

有任何想法吗?谢谢!

4

1 回答 1

4

就像在这个答案中提到的一样:

这些<mat-error>元素必须是的直接子<mat-form-field>级才能正常工作。

因此,就像在那个答案中一样,如果 case 是一个单独的组件,它也适用于此处:将您的容器设置在mat-error标签内,它会正常工作!

<mat-form-field [formGroup]="formGroup">
  <input matInput type="text" [formControlName]="fControlName">
  <mat-error>
    <ng-container *ngTemplateOutlet="showErrorsTemplate"></ng-container>
  </mat-error>
</mat-form-field>

这意味着您不需要mat-errorng-template.

于 2019-02-03T20:39:51.223 回答