Używam Angular 2 (TypeScript).
Chcę coś zrobić z nową selekcją, ale onChange()
zawsze dostaję ostatnią selekcję. Jak mogę uzyskać nowy wybór?
<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.
}