gpt4 book ai didi

angular - 管道转换后在 ngFor 中获取数组的长度

转载 作者:太空狗 更新时间:2023-10-29 17:05:53 25 4
gpt4 key购买 nike

我有以下模板:

<div *ngFor="let item of myArray | customPipe1 | customPipe2; let l = length">
Here is the length of my ngFor : {{l}}
</div>

不幸的是,ngFor 中不存在长度。我怎样才能解决这个问题,让我的 ngFor 中有可用的长度?

最佳答案

另一种解决方案如下

<div *ngFor="let item of myArray | customPipe1 | customPipe2; let l = count">
Here is the length of my ngFor : {{l}}
</div>

Plunker Example

另见

关于angular - 管道转换后在 ngFor 中获取数组的长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44521254/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com