我希望在HTML中构建一个元素列表,但是在该列表中的某个属性上。
<ul>
<li *ngFor="#record of recordsService.records">
{{record.recordTitle}} -
<strong>{{record.recordArtist}}</strong>
</li>
</ul>
在#record对象中,有一个isSingle属性,它是true或false。
我想跳过循环中的错误元素,而不必在DOM中留下空DIV
答案 0 :(得分:3)
您可以在阵列Pipe
上应用recordsService.records
来过滤所需的值。
Pipe
与angular1中的filter
类似:
https://angular.io/docs/ts/latest/guide/pipes.html