Ниже приведено изображение данных JSN:
web.service.ts
myQuote = 'http://quotes.rest/qod.json';
getQuotes(){
return this.http.get(this.myQuote).subscribe(data => {
// data = const quotes;
console.log(data)
});
}
home.component.ts
@Component({
selector: 'messages',
template: ' here {{contents?.quotes[0].quote}}'
})
export class MessagesComponent {
constructor(private webService: webServices){}
showQuotes(){
this.webService.getQuotes();
var items = {}
}
ngOnInit(){
console.log(this.showQuotes())
}
}