离子选择 - 无法设置选定的值

时间:2018-06-12 18:50:29

标签: angular ionic-framework

我有离子选择框,选项填充如下。我想设置默认情况下要选择的集合的第一个值。请帮忙

<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>

1 个答案:

答案 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];