J'utilise Angular 2 (TypeScript).
Je veux faire quelque chose avec la nouvelle sélection, mais je reçois onChange()
toujours la dernière sélection. Comment puis-je obtenir la nouvelle sélection?
<select [(ngModel)]="selectedDevice" (change)="onChange($event)">
<option *ngFor="#i of devices">{{i}}</option>
</select>
onChange($event) {
console.log(this.selectedDevice);
// I want to do something here with the new selectedDevice, but what I
// get here is always the last selection, not the one I just selected.
}