how to load data in select item in ionic 2 and know the selected item?
My current attempt below page.html <form (ngSubmit)="InsertLocation()" #registerForm="ngForm"> <ion-row> <ion-col> <img src="assets/img/1.jpg" /> <ion-list> <ion-item> <ion-label>Chauffeur</ion-label> <ion-select [(ngModel)]="selectedvalue"name="chauff"> <ion-option *ngFor="let item of chauffeurs"[value]="item.nom_chauffeur"> {{item.nom_chauffeur}} </ion-option> </ion-select> </ion-item> <ion-list> <ion-row> <ion-col> <button ion-button class="submit-btn" type="submit" [disabled]="!registerForm.form.valid">Inserer</button> </form> page.ts LoadChauffeurs(id){ this.data.LoadChauffeur().subscribe