I am trying to loop through multiple arrays inside a json object. Here is a picture of the structure of json object.
I have been trying loop through it using ngFor, but I am getting an error. Here is the code of how I am trying to loop through:
<ion-item *ngFor="let item of items">
{{conversation}}
</ion-item>
I am getting the following error:
caused by: Cannot find a differ supporting object '[object Object]' of type 'object'. NgFor only supports binding to Iterables such as Arrays.
I need to be able to loop through all the arrays and but I can't figure out how to do that. Any help will be much appreciated.