有一种方法可以在使用铬自动填充该值但将文本字段绑定到mat-autocomplete时,将值绑定到该组件。这是我的代码,当我自动填充字段时,其他所有字段都可以正常工作,但不能自动完成。我是否必须将email field =设置为隐藏字段的值?
<mat-form-field>
<input type="text" placeholder="Email" matInput formControlName="email" [matAutocomplete]="email">
</mat-form-field>
<mat-autocomplete #email="matAutocomplete">
<mat-option *ngFor="let option of userObs| async" [value]="option.email">
{{option.firstName}} {{option.lastName}} - {{option.email}}
</mat-option>
</mat-autocomplete>