IONIC Ion-Select正在“选择”所有选项

问题描述 投票:3回答:1

在我的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是每个选项的相同值。我已经为每个选项添加了不同的值。没有用。如果我完全删除了值=“”它正常工作

有帮助吗?

angular ionic-framework
1个回答
7
投票

由于你的价值分配是动态的,你需要在[]周围使用value

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

希望能帮助到你。

© www.soinside.com 2019 - 2024. All rights reserved.