小编典典

Angular 6 Material mat-select 更改方法已删除

all

在 Angular Material Design 6 中,删除了(更改)方法。当用户更改选择时,我应该如何替换更改方法以执行组件中的代码?


阅读 92

收藏
2022-07-16

共1个答案

小编典典

将其从 更改changeselectionChange

<mat-select (change)="doSomething($event)">

就是现在

<mat-select (selectionChange)="doSomething($event)">

https://material.angular.io/components/select/api

2022-07-16