角度2:* ngFor中的条件

时间:2016-01-24 19:47:08

标签: javascript angularjs angular

我希望在HTML中构建一个元素列表,但是在该列表中的某个属性上。

<ul>
    <li *ngFor="#record of recordsService.records">
        {{record.recordTitle}} -
        <strong>{{record.recordArtist}}</strong>
    </li>
</ul>

在#record对象中,有一个isSingle属性,它是true或false。

我想跳过循环中的错误元素,而不必在DOM中留下空DIV

1 个答案:

答案 0 :(得分:3)

您可以在阵列Pipe上应用recordsService.records来过滤所需的值。

Pipe与angular1中的filter类似: https://angular.io/docs/ts/latest/guide/pipes.html