刚刚切换到Angular 4和md-option上的材料2 autoComplete的onSelect()不再有效但我找不到任何关于此的文档。什么是修复?
<md-autocomplete #auto="mdAutocomplete" [displayWith]="displayText.bind(this)">
<md-option (onSelect)="selectItem(item)" *ngFor="let item of filteredItems | async" [value]="item">
{{ item[propertyName] }}
</md-option>
</md-autocomplete>
答案 0 :(得分:2)
对于寻找答案的其他人,它已更改为onSelectionChange
。
答案 1 :(得分:0)
您可以使用keyUp
事件:
(keyup)="selectItem(item)"