我使用Ionic 3,我想实现一个ion-select
,我跟着离子文档,但我无法理解我的错误。我的代码在这里。
hosts: any[] = [
'*MANAGER*',
'Alberto Bellesini',
'Alessandro Rodeghero',
'Andrea Burla',
..............
];
在我的html中我有
<ion-select [(ngModel)]="selectedHost">
<ion-label>From:</ion-label>
<ion-option *ngFor="let host of hosts" [value]="host"></ion-option>
</ion-select>
它确实无效。我可以看到一些无线电等于我的数组的长度,但所有元素似乎都是空的或未定义的:我看不到任何东西。我已经尝试将hosts
作为字符串数组,但结果是一样的。有人可以帮助我吗?
答案 0 :(得分:0)
如果我理解正确,你就看不到单选按钮的标签了吗?
<ion-option *ngFor="let host of hosts" [value]="host">{{host}}</ion-option>