I have the following json:
{
"codEmp": 5555,
"empleado": [{
"codEmp": "0001",
"descEmp": "Juan Perez",
"importe": {
"minimo": 10,
"maximo": 2500
},
"pariente": [{
"parentesco": "esposa",
"nombre": "Julia"
}, {
"parentesco": "hijo",
"nombre": "Marcelo"
}],
"tarjetas": [{
"codTarjeta": "V",
"descTarjeta": "Visa"
}]
}, {
"codEmp": "1488",
"descEmp": "Sergio",
"importe": {
"minimo": 100,
"maximo": 25000
},
"pariente": [{
"parentesco": "esposa",
"nombre": "Fernanda"
}, {
"parentesco": "hijo",
"nombre": "Maria"
}],
"tarjetas": [{
"codTarjeta": "V",
"descTarjeta": "Visa"
}, {
"codTarjeta": "A",
"descTarjeta": "America"
}]
}]
}
I would need to visualize it on an html page.
I'm trying with link , if I have "codEmp" and a list I can do it, but it's complicated when I have a list within another list to show it in a table.