Array in Ionic json file

0

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.

    
asked by anonymous 13.10.2017 / 17:17

1 answer

1

You can display the result within another for :

<ion-list>
    <ion-item *ngFor="let desc of descritores">
        <h2>{{desc.descritor}}</h2>
        <ion-item *ngFor="let media of desc.resultado">
            <h3>Resultado: {{media.MediaTotal}}</h3>            
        </ion-item> 
        <p>Disponível</p>
   </ion-item>
</ion-list>
    
13.10.2017 / 17:23