i am using a third party api. which provides a nested JSON object in return. In angular 7 i have used http get request to get data. The data looks good in console. But does not bind with the HTML.
I am using angular 7
ngOnInit(){
this._dataservice.getdata().subscribe(res => {
this.cricdata = res;
console.log(this.cricdata);
})
}