当您查看官方示例时,使用Tab失去焦点时,自动完成列表将关闭: Angular Material Autocomplete documentation/example
在我的实现中,当“跳出”控件时,弹出窗口保持打开状态。仅当我用鼠标单击其他地方或选择建议的元素时,它才会关闭。我做错了它没有原始元素的行为吗?我拥有最新的Material版本,如果我使用FormControls代替[[ngModel)] ...
<mat-form-field>
<input matInput
type="text"
placeholder="Market Name"
[(ngModel)]="marketname"
[matAutocomplete]="auto">
<mat-autocomplete #auto="matAutocomplete" class="autocomplete">
<mat-option *ngFor="let m of marketnames" [value]="m" class="option">{{m}}</mat-option>
</mat-autocomplete>
</mat-form-field>