我有一个具有材料自动完成字段的编辑表单。我需要编辑时无法将已经选择的值设置为自动完成
我尝试过这种尝试,但是没有运气
我希望从服务器收到数据后会修补掉自动完成下拉列表,但是我找不到解决方法,请帮忙
<div class="col-sm-4">
<mat-form-field class="example-full-width">
<input type="text" placeholder="Select a seller" aria-label="Number"
matInput [formControl]="seller"
[matAutocomplete]="auto" formControlName="seller"/>
<mat-autocomplete #auto="matAutocomplete" [displayWith]="displayFn" >
<mat-option *ngFor="let nameOfSeller of filteredOptions | async"
[value]="nameOfSeller" >
{{ nameOfSeller.name }}
</mat-option>
</mat-autocomplete>
<mat-error *ngIf="seller.invalid && seller.touched">Required</mat-error>
</mat-form-field>
</div>