I'm using Angular 5 and I have this ngFor:
<div class="row margin-v-20">
<my-tile [routerLink]="['/secondPage', item.id, 'item-list']" *ngFor="let item of listaOfItem" [item]="item"></my-tile>
</div>
and I need to access from the routed component "secondPage/:id/item-list" to the json object "item" of the list.
How can I achieve this?