I'm with a big question, how could I show data in the following way
from the following array:
peliculas = [
{
"pelicula": "Batman v. Superman",
"director": "Zack Snider",
"anio": "2016",
"autor":
[
{
"usuario": {
"nombre":"Mario 1",
"pais":"Canada"
}
},
{
"usuario": {
"nombre":"Mario 2",
"pais":"USA"
}
}
]
},
{
"pelicula": "La verdad duele",
"director": "Will Smith",
"anio": "2015",
"autor":
[
{
"usuario": {
"nombre":"Juan 1",
"pais":"Canada"
}
},
{
"usuario": {
"nombre":"Juan 2",
"pais":"USA"
}
}
]
}
];
I'm using Angular 4