在 Angular Material Design 6 中,删除了(更改)方法。当用户更改选择时,我应该如何替换更改方法以执行组件中的代码?
将其从 更改change为selectionChange。
change
selectionChange
<mat-select (change)="doSomething($event)">
就是现在
<mat-select (selectionChange)="doSomething($event)">
https://material.angular.io/components/select/api