I am trying to get a list of products and I’m running into an issue due to the fact that it’s an array and inside array multiple array is used how to iterate array inside the object i have tried but show object object in html tell m anyone how to iterate array?
<ion-list style=" margin-top: 48px;">
<ion-card *ngFor="let userProduct of sellerProductListViaCategory">
<ul class='imageList'>
<span *ngFor="let productSet of userProduct.sellerProductSetDto">
<li *ngFor="let imageURL of productSet.setImageURLList">
<img src="{{imageURL}}">
</li>
<ion-icon ios="ios-close-circle" md="md-close-circle"></ion-icon>
</span>
</ul>
</ion-card>
</ion-list>