Hi i am beginner in ionic with angular app development and using below code for Http calls and i got response in json format, Now i want show response title in list,I tried lot but not getting result can some one help me please
Api url:
https://www.reddit.com/r/gifs/top/.json?limit=2&sort=hot
home.ts:
this.http.get('https://www.reddit.com/r/gifs/top/.json?limit=2&sort=hot',{ observe:'response'}).subscribe( res => { console.log(res) ;
var info=JSON.parse(JSON.stringify(res));
this.countries = info.data.children;
});
home.html:
<ion-content padding>
<ion-list>
<ion-item *ngFor="let c of countries">
<h2>{{c.title}}</h2>
</ion-item>
</ion-list>
</ion-content>