我的 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: