mat-select angular 5 で選択したオプション値の ID を取得する方法 onchangeevent で選択したオプションの値のみを取得します。しかし、選択したオプション値のIDを取得するにはどうすればよいですか。
client.component.html
<mat-form-field>
<mat-select placeholder="Client*" #clientValue (change)="changeClient($event)">
<mat-option *ngFor="let client of clientDetails" [value]="client.clientName">
{{client.clientName | json}}
</mat-option>
</mat-select>
</mat-form-field>
client.component.ts file
export class Client{
changeClient(event){
console.log(event);
}
}