试着*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
| 归档时间: |
|
| 查看次数: |
21723 次 |
| 最近记录: |