3 回答
TA贡献1802条经验 获得超5个赞
在组件内,您可以定义一个数字数组(ES6),如下所述:
export class SampleComponent {
constructor() {
this.numbers = Array(5).fill().map((x,i)=>i); // [0,1,2,3,4]
this.numbers = Array(5).fill(4); // [4,4,4,4,4]
}
}
请参阅此链接以获取数组创建:在JavaScript中从1..20创建整数数组的最有趣的方法。
然后可以使用以下方法遍历此数组ngFor:
@Component({
template: `
<ul>
<li *ngFor="let number of numbers">{{number}}</li>
</ul>
`
})
export class SampleComponent {
(...)
}
或不久:
@Component({
template: `
<ul>
<li *ngFor="let number of [0,1,2,3,4]">{{number}}</li>
</ul>
`
})
export class SampleComponent {
(...)
}
TA贡献1797条经验 获得超6个赞
您与“非优雅”解决方案非常接近。
怎么样:
<div class="month" *ngFor="let item of [].constructor(10); let i = index">
...
</div>
在这里,我Array从一个空数组获取构造函数:[].constructor,因为Array在模板语法中它不是公认的符号,而且我也懒得去做,Array=Array或者counter = Array像@ pardeep-jain在他的第四个示例中那样在组件打字稿中也懒得做。我new之所以这么称呼它,是因为new不需要从Array构造函数中获取数组。
Array(30)和new Array(30)等价。
该数组将为空,但这没关系,因为您真的只想在循环中使用ifrom ;let i = index。
- 3 回答
- 0 关注
- 560 浏览
添加回答
举报