我有离子选择框,选项填充如下。我想设置默认情况下要选择的集合的第一个值。请帮忙
<ion-select interface="popover">
<ion-option *ngFor="let cps of selectedCP" value="{{cps.ID}}" checked="true" (ionSelect)="selectAssets($event, cps)">{{cps.Name}}</ion-option>
</ion-select>
答案 0 :(得分:1)
您需要使用 [(ngModel)]
<ion-select [(ngModel)]="selectedP" interface="popover">
<ion-option *ngFor="let cps of selectedCP" value="{{cps.ID}}" checked="true" (ionSelect)="selectAssets($event, cps)">{{cps.Name}}</ion-option>
</ion-select>
和.TS
this.selectedP= selectedCP[0];