I'm trying to create a table using a JSON file.
What I'm looking for is to create the table based on the structure of the JSON, for example, I have the following JSON:
{
"Persona":{
"nombre":"Juan",
"edad":28,
"Residencia":{
"calle":"example",
"numero":"0123"
}
}
}
What I need is the following:
Is it possible to create this HTML type table or something similar automatically using java, jquery, javascript or some other kind of language?