This is my service: https://api.myjson.com/bins/quv59
Im trying to display it in my html
*ngFor="let item of booksList; let i = index"
my ts file
ngOnInit() {
this.booksDataService.getBooks().subscribe(
function(response) {
this.booksList = response.books;
},
);}
thanks in advance