Ionic 3从数据中选择列表

时间:2018-11-16 13:52:53

标签: ionic-framework select ionic3

我正在尝试按照以下代码将来自http调用的数据加载到select中。

<ion-select [(ngModel)]="dealer">
<ion-option *ngFor="let dealerDetails of dealers">{{dealerDetails.name}}</ion-option>
</ion-select>

这将返回

ERROR Error: Uncaught (in promise): Error: Template parse errors:
'ion-option' is not a known element:
1. If 'ion-option' is an Angular component, then verify that it is part of 
this module.
2. If 'ion-option' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to 
the '@NgModule.schemas' of this component to suppress this message. ("

我尝试了#而不是让它无效。

此代码也可以按照以下代码完美地用于列表:

  <ion-list>
<ion-item *ngFor="let dealerDetails of dealers">{{dealerDetails.name}}</ion-item>
</ion-list>

enter image description here

0 个答案:

没有答案