我有一个选择,我想手动设置一个对象值。我尝试将 setValue 或 patchValue 与 Object 一起使用,但它不起作用。
<mat-select placeholder="Selecione a resposta" (change)="onSelectFraudResponse($event.value)" formControlName="response">
<mat-option *ngFor="let res of fraudResponses" [value]="res">
{{res.name}}
</mat-option></mat-select>
我知道同时使用模板表单和反应表单是不正确的。