0
I have a JSON that looks like this:
[
{
"id": 459,
"razao_social": "Testosvaldo de Testousa",
"cidade": "Testolandia",
},
{
"id": 472,
"razao_social": "teste trr",
"cidade": "Belo Horizonte",
},
{
"id": 473,
"razao_social": "teste trr",
"cidade": "Belo Horizonte",
}
]
How do I return a JSON grouped by city?
It can help you: https://stackoverflow.com/questions/6487167/deserializing-a-json-into-a-javascript-object
– SUR1C4T3
What result do you expect?
– Marconi
Would that be the last answer? https://stackoverflow.com/questions/22961446/group-by-for-json-data-using-jquery
– Marconi