属性绑定ngForIn未被嵌入式模板上的任何指令使用 - Ionic 2

Nic*_*ens 27 ionic2 angular

试着*ngFor像这样在html中运行.但是,这个错误出现了.

Property binding ngForIn not used by any directive on an embedded template
Run Code Online (Sandbox Code Playgroud)

这是html代码:

<ion-card *ngFor="#media in medias">
Run Code Online (Sandbox Code Playgroud)

我在之前的项目中也发生了这种情况,仍在弄清楚它.有线索吗?

仍然是Ionic2和Angular2的新手.

Rap*_*ael 66

你的angular1语法错误了:

而不是*ngFor="#media in medias",

你必须写 *ngFor="#media of medias"

更新 - 从beta.17开始,使用let语法而不是#.这会更新到以下内容:

<div *ngFor="let media of medias">
Run Code Online (Sandbox Code Playgroud)

https://angular.io/docs/ts/latest/api/common/index/NgFor-directive.html