微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何为 ngFor 循环添加条件

如何解决如何为 ngFor 循环添加条件

我正在使用 Clarity 创建一个表。 它们有自己的语法 clrDgItems,但结构与 ngFor 相同。

我想为我的表格创建一个循环,它过滤前 10 个项目,然后第二个表格只显示第 11-20 个项目。

您还应该可以转到下一页。也就是说,第一个表更新到项目 21-30,第二个表更新到 31-40

我的第一个想法是,

ngFor="let employee of employees; i as index; i < firstMaxIndex;"
ngFor="let employee of employees; i as index; i > firstMaxIndex && i < secondMaxIndex"

但是 ngFor 循环不是这样工作的,我得到了错误NG5002: Parser Error: Unexpected token <

解决方法

使用切片

{{ value_expression | slice : start [ : end ] }}

就像这样:

ngFor="let employee of employees | slice : 0 : firstMaxIndex"

ngFor="let employee of employees | slice : firstMaxIndex : secondMaxIndex"
,

最好将条件和循环分开,如下所示:

<ng-container *ngFor="let employee of employees; i as index;">
    <div *ngIf="i > firstMaxIndex && i < secondMaxIndex">
        // add elements or display values based on your needs.
    </div>
</ng-container>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。