Angular Materials自动完成功能无法关闭

时间:2018-07-05 20:44:10

标签: angular angular-material-6

当您查看官方示例时,使用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>

0 个答案:

没有答案