对于不同的输入,我有相同的侦听器。
当侦听器被触发时,我无法知道谁生成了事件。
<form #f="ngForm">
<mat-card-content>
<mat-input-container>
<input matInput [(ngModel)]="id" name="id" placeholder="ID" (ngModelChange)="inputChanged()" />
</mat-input-container>
<mat-input-container>
<input matInput [(ngModel)]="name" name="name" placeholder="NAME" (ngModelChange)="inputChanged()" />
</mat-input-container>
</mat-card-content>
</form>
//ts
inputChanged():void{
//how to know who generates
}