属性 绑定 ngForIn 未被嵌入式模板上的任何指令使用 - Ionic 2
Property binding ngForIn not used by any directive on an embedded template - Ionic 2
正在尝试 运行 html 中的 *ngFor
像这样。
但是,这个错误出现了。
Property binding ngForIn not used by any directive on an embedded template
这是 html 代码:
<ion-card *ngFor="#media in medias">
我在之前的项目中也遇到过这种情况,目前仍在解决中。有什么线索吗?
Ionic2 和 Angular2 还是新手。
你误会了 angular1 语法:
而不是*ngFor="#media in medias"
,
你必须写*ngFor="#media of medias"
UPDATE - 从 beta.17 开始,使用 let
语法而不是 #
。此更新为以下内容:
<div *ngFor="let media of medias">
https://angular.io/docs/ts/latest/api/common/index/NgFor-directive.html
正在尝试 运行 html 中的 *ngFor
像这样。
但是,这个错误出现了。
Property binding ngForIn not used by any directive on an embedded template
这是 html 代码:
<ion-card *ngFor="#media in medias">
我在之前的项目中也遇到过这种情况,目前仍在解决中。有什么线索吗?
Ionic2 和 Angular2 还是新手。
你误会了 angular1 语法:
而不是*ngFor="#media in medias"
,
你必须写*ngFor="#media of medias"
UPDATE - 从 beta.17 开始,使用 let
语法而不是 #
。此更新为以下内容:
<div *ngFor="let media of medias">
https://angular.io/docs/ts/latest/api/common/index/NgFor-directive.html