gpt4 book ai didi

angular - 在 IONIC Ion-Select 上是 'selecting' all options on choice

转载 作者:太空狗 更新时间:2023-10-29 18:06:44 25 4
gpt4 key购买 nike

在我的 Ionic 应用程序上,我有一个 ionic 选择器:

<ion-item>
<ion-label>Type</ion-label>

<ion-select [(ngModel)]="type" interface="action-sheet">
<ion-option *ngFor="let type of types"
value="type.class">
{{type.name}}
</ion-option>
</ion-select>
</ion-item>

每次我选择一个选项时,它都会选择所有可用的选项。我已经尝试使用属性 multiple="false"但没有用。

额外的细节:

type.class is the same value for every option. I already put diferent values for each option. None worked. If I totally remove the value="" it work properly

有什么帮助吗?

最佳答案

由于您的值分配是动态的,因此您需要在 value 周围使用 [],例如,

<ion-option *ngFor="let type of types" [value]="type.class">
{{type.name}}
</ion-option>

希望对您有所帮助。

关于angular - 在 IONIC Ion-Select 上是 'selecting' all options on choice,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47897044/

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