我有一个非常长的角度模板“管道流”,我想在每个管道之后显示每个数组的长度。基本上,每个过滤器之后还剩下多少个项目。
<div>{{length of arrary after each pipe}}</div>
<ng-container *ngFor="let notification of notifications$ | async | pipe1:filter | pipe1:searchInput:['title', 'body'] | pipe3:sort as notificationsFiltered">
我知道最后我可以使用“作为变量”,但是对于中间的结果是否有办法呢?
如何在ngfor外部的模板中提供(例如,包括最后一个)结果?
通知$ |异步返回一系列通知。