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

前端之家收集整理的这篇文章主要介绍了angular – 在管道转换后获取ngFor中的数组长度前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下模板:
<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 as result">
  Here is the length of my ngFor : {{result.length}}
</div>

另见https://angular.io/api/common/NgForOf

原文链接:https://www.f2er.com/angularjs/142380.html

猜你在找的Angularjs相关文章