I have an array of JSON objects named 'books', however I can't seem to extract any of the information for use in the HTML.
The array is in the form :
Each object is in the form:
I am trying to access fields such as isbn13 from the HTML file. As follows:
<ion-content>
<ion-item *ngFor="let book of books">
{{book.data.isbn13}}
</ion-item>
</ion-content>
This code throws no error but displays no text. If I reduce it to {{book.data}} it prints [object Object] for each entry in the array.
How can I access isbn13?


*ngForyou are trying to displayisb13and notisbn13.book.data[0].isbn13.