gpt4 book ai didi

javascript - Ionic 2 - 将 ngFor 中的第一个值选择为 true

转载 作者:太空宇宙 更新时间:2023-11-04 15:39:56 25 4
gpt4 key购买 nike

我想显示一个选择列表,其中选择 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" 的当前版本不同。 。但如果有任何建议,我们将不胜感激!

最佳答案

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

在你的 .js 中:

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

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

关于javascript - Ionic 2 - 将 ngFor 中的第一个值选择为 true,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43970479/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com