JSON with variable fields

0

I get a PHP that accesses the MySQL database a JSON that does not always have the same fields, now it looks like this:

[{"clu_nome":"Sport Club Corinthians Paulista","clu_estado":"SP","clu_ordem":5,"pon_pontos":"1858","pon_jogos":"1298","pon_vitori":"557","pon_empate":"383","pon_derrot":"358","pon_golpro":"1727","pon_golcon":"1364","pon_saldo":"363","pon_aprove":"54"},{"clu_nome":"Sport Club Internacional","clu_estado":"RS","clu_ordem":9,"pon_pontos":"1847","pon_jogos":"1290","pon_vitori":"559","pon_empate":"356","pon_derrot":"375","pon_golpro":"1743","pon_golcon":"1334","pon_saldo":"409","pon_aprove":"54"}]

now like this, being able to have other formats:

[{"clu_nome":"S\u00e3o Paulo Futebol Clube","clu_estado":"SP","clu_ordem":3,"pon_classi":"224"},{"clu_nome":"Sport Club Corinthians Paulista","clu_estado":"SP","clu_ordem":5,"pon_classi":"202"},{"clu_nome":"Gr\u00eamio Foot-Ball Porto Alegrense","clu_estado":"RS","clu_ordem":10,"pon_classi":"185"},{"clu_nome":"Sport Club Internacional","clu_estado":"RS","clu_ordem":9,"pon_classi":"185"},{"clu_nome":"Clube Atl\u00e9tico Mineiro","clu_estado":"MG","clu_ordem":1,"pon_classi":"182"}]

How do I select each field to assemble in a ListView?

No example I see around here helps to do this.

    
asked by anonymous 27.03.2018 / 19:07

0 answers