I have the following JSON document
"descritores": [{
"descritor": "texto..",
"resultado": [{
"MediaTotal": "81,16"
},
{
"MediaTotal": "81,16"
}
]
},
{
"descritor": "Texto 2..",
"resultado": [{
"MediaTotal": "87,01",
},
{
"MediaTotal": "87,01",
}
],
},
And I'm displaying like this on ionic
<ion-list>
<ion-item *ngFor="let desc of descritores">
<h2>{{desc.descritor}}</h2>
<h3>Resultado{{desc.resultado.MediaTotal}}</h3>
<p>Disponível</p>
</ion-item>
But I'm not able to display desc.resultado.MediaTotal
, which is an array that is inside another array, as I do for display.