Hey @healer12, You have to write code for looping with in the tag of that element which you want to plot multiple times or on which you want loop to work. In your case, if you want to have multiple options in ion-select then you have to loop the ion-option tag. Do it like this:
<ion-item>
<ion-label stacked>{{'City' | translate}}</ion-label>
<ion-select [(ngModel)]="dataProvince" name="province">
<ion-option *ngFor="let p of dataProvince" value="{{p.provinceid}}">{{p.name}}</ion-option>
</ion-select>
</ion-item>
I hope this will help you. Let me know if you face any issue.
Cheers!!!