Ionic 2 - 在ng中选择第一个值为true

时间:2017-05-15 01:44:55

标签: javascript ionic-framework ionic2

我想显示一个选择列表,选择我的ngFor数组中的第一个值。

我的代码是:

<ion-select [(ngModel)]="account" (change)="changeAccount(account)">
  <ion-option *ngFor="#userAccount of userAccountData" value="{{ userAccount.name}}">{{ userAccount.name}}</ion-option>
  <ion-option value="new" checked="false">New Account</ion-option>
</ion-select>

我想知道如何放置checked="true",使其仅用于ngFor循环的第一个值。

注意:我使用的是旧版本的Ionic 2(2.0.0-beta.4),因此语法与使用selected="true"的当前版本不同。但是会感激任何建议!

1 个答案:

答案 0 :(得分:1)

您可以使用ngModel代替checked="true"

在.js中:

  this.account = this.userAccountData[0].name;

基本上这与checked的工作方式相同。