角度-* ngFor

时间:2020-04-29 11:35:02

标签: html angular typescript ngfor

在我的Angular项目中,我不知道为什么,但是* ngFor不向我显示一个标签:

没有*ngFor

without "*ngFor" without "*ngFor"

*ngFor

with *ngFor with *ngFor

谢谢

3 个答案:

答案 0 :(得分:0)

像这样使用 <li *ngFor="let user of users">{{ user.name }}</li>

答案 1 :(得分:0)

*ngFor充当循环,我可以看到您没有在ngFor中输入任何内容,这使其运行0次

输入某些条件,例如*ngFor ="let recipe of recipes"

它肯定会显示食谱中的项目数

答案 2 :(得分:0)

我只是解决了这个问题。

插入了一个覆盖代码的组件(app-recipe-item)。

谢谢。