Hi guys, I got a ng2 page with several * ngFor nested for each using pipes. I want to get a list of internal elements to do an action for all of them,
something like that:
<div *ngFor="let a of b | x |y | z">
<div *ngFor="let c of a | x |y | z">
<div *ngFor="let d of c">
<div [service]="(d.item|async)"></div>
</div>
</div>
</div>
I want to list all d.item in one list and call a method on it.
source
share