我的page.html
<ion-item>
<ion-label color="medium">Leave</ion-label>
<ion-select [(ngModel)]="leavetype" name="leavetype">
<ion-select-option *ngFor="let val of result" value=""> {{val. leavetype}} </ion-select-option>
</ion-select>
</ion-item>
示例:- 我在下拉列表中有以下值:
Medical
Casual
Other
在关闭下拉菜单后选择“休闲”时,它显示为“医疗”而不是“休闲”,并且不会将值保存在数据库中。
答案 0 :(得分:0)
将此行更改为
<ion-select-option *ngFor="let val of result" value=""> {{val. leavetype}} </ion-select-option>
到
<ion-select-option *ngFor="let val of result" [value]="val.leavetype"> {{val. leavetype}} </ion-select-option>
</ion-item>