37

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

Property binding ngForIn not used by any directive on an embedded template

这是html代码:

<ion-card *ngFor="#media in medias">

我在之前的项目中也遇到过这种情况,现在还在解决。有什么线索吗?

Ionic2 和 Angular2 仍然是新手。

4

1 回答 1

77

您对 angular1 语法有误:

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

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

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

<div *ngFor="let media of medias">

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

于 2016-01-18T09:14:54.303 回答