1

我的 mat-select 组件有问题,一切正常,但他只是在编辑时没有设置初始值......如果我更改为简单的 HTML,一切正常。我做错了什么?

工作正常的 HTML 选择:

<select formControlName="category" [compareWith]="compareFn">
    <option [ngValue]="c" *ngFor="let c of categoriesService.categories$ | async"> {{c.name}}</option>
  </select>

未按预期工作的 Angular 材质组件:

<mat-form-field>
    <mat-select placeholder="Category" formGroupName="category" (selectionChange)="setCategoryValueOnForm($event)"
                [compareWith]="compareFn" >
      <mat-option *ngFor="let c of categoriesService.categories$ | async" [value]="c">
        {{c.name}}
      </mat-option>
    </mat-select>
  </mat-form-field>

使用简单的选择元素时,我看到我的函数 compareFn 有效,但使用 Angular Material 时,'y' 值始终未定义......

compareFn(x: ICategory, y: ICategory): boolean {
   console.log(x);
   console.log(y);
   console.log('CALLED COMPARE FN');
   return x && y ? x.id === y.id : x === y;
 }

有问题的gif:

在此处输入图像描述 我做错了什么?谢谢!

4

1 回答 1

0

我刚刚意识到当正确的是 formControlName="category" 时我正在使用 formGroupName="category" ...

<mat-form-field hintLabel="select one">
    <mat-select placeholder="Category" formControlName="category"
                [compareWith]="compareIds">
      <mat-option *ngFor="let c of (categoriesService.categories$ | async)" [value]="c">
        {{ c.name }}
      </mat-option>
    </mat-select>
    <mat-error>
      {{ getError('category') }}
    </mat-error>
  </mat-form-field>

.ts

compareIds(category1: ICategory, category2: ICategory): boolean {
    return category1 && category2 ? category1.id === category2.id : category1 === category2;
}
于 2018-09-26T01:48:56.763 回答