Angular select 每次变化时如何取值?

How to take the value of an Angular select each time it changes?

我的 html

中有此代码
        <mat-form-field>
          <mat-label>Country</mat-label>
          <mat-select (change)="selectOpt($event)" required formControlName="country">
            <mat-option *ngFor="let country of countries" [value]="country.name" >
              {{country.name}}
            </mat-option>
          </mat-select>
        </mat-form-field>

如何在每次 select 编辑不同内容时获取 select 的值?我的 mat-select 中有 (change) 事件,但它没有捕捉到事件

更改为 (selectionChange)="selectOpt($event)",它将起作用