使用Angular Material将mat-select转换为mat-autocomplete

时间:2019-10-23 16:01:15

标签: html angular angular-material

我正在尝试将自动完成功能添加到mat-form字段中。当我加上括号时,我得到一个错误。这是代码:

    <mat-form-field class="example-full-width">
    <mat-label>Dropdown</mat-label>
    <mat-select (selectionChange)="onDropdownChange($event)" [ngModelOptions]="{standalone:true}" [(ngModel)]="someValue">
     <mat-option *ngFor="let someValue of someValues" [value]="someValue.id">
     {{otherValue.otherValues}}
     </mat-option>
     </mat-select>
    </mat-form-field>

1 个答案:

答案 0 :(得分:0)

角度材料已经具有自动完成组件,您需要使用它来代替: https://material.angular.io/components/autocomplete/overview

stackblitz