I have a output records,
"Records": [{"successcount":3,"tap":"DF"},{"successcount":6,"tap":"MF"}] in this format.
In my html page, I need to add those successcount & display.
My HTML:
<ng-container *ngFor="let item of element.Records; let i=index">
{{ item?.successcount }}
{{ i }}
</ng-container>
Here Im able to display successcounts separately. But I need to add both of them in html itself and display. Can anybody tell me how to do this?