0
I created a json with the data from a journal that I maintain, only now I have to create a separate entry by the proper category, by author, and the other fields, I was able to get the general data, but I cannot filter this data to its corresponding field, I will show my code and explain better.
var json =
[
{
"ID":"7337",
"TÍTULO":"ssss",
"TIPO":"sssss",
"NATUREZA DO TRABALHO":"",
"CATEGORIA":"fdf",
"SETOR EDUCACIONAL":"Educação Superior",
"AUTORES":[
{
"AUTOR":"wewew",
"INSTITUIÇÃO":"wewewe"
},
{
"AUTOR":"weew",
"INSTITUIÇÃO":"Ureerr"
},
{
"AUTOR":"sdsds",
"INSTITUIÇÃO":"Unicrerear"
}
]
},
{
"ID":"8265",
"TÍTULO":"sddssd",
"TIPO":"fdf",
"NATUREZA DO TRABALHO":"Pesquisa",
"CATEGORIA":"fdf",
"SETOR EDUCACIONAL":"Educação Superior",
"AUTORES":[
{
"AUTOR":"teste",
"INSTITUIÇÃO":"Universidade de Ribeirão Preto"
},
{
"AUTOR":"teste",
"INSTITUIÇÃO":"Universidade de Ribeirão Preto"
}
]
},
{
"ID":"6216",
"TÍTULO":"POLÍTICA",
"TIPO":"testests",
"NATUREZA DO TRABALHO":"textte",
"CATEGORIA":"A - Estratégias e Políticas",
"SETOR EDUCACIONAL":"Educação Superior",
"AUTORES":[
{
"AUTOR":"Araci Hpan",
"INSTITUIÇÃO":"UNIVERSIDADE "
},
{
"AUTOR":"Kelly",
"INSTITUIÇÃO":"Universidade "
}
]
},
{
"ID":"5869",
"TÍTULO":"A EDUCAÇÃO BRASILEIRA E OS AVANÇOS NO PROCESSO DE REGULAMENTAÇÃO DO ENSINO A DISTÂNCIA",
"TIPO":"Investigação Científica (IC)",
"NATUREZA DO TRABALHO":"A - Planejamento ",
"CATEGORIA":"A - Estratégias",
"SETOR EDUCACIONAL":"Educação Superior",
"AUTORES":[
{
"AUTOR":"JAMARA C",
"INSTITUIÇÃO":"ISERJ"
},
{
"AUTOR":"sasa",
"INSTITUIÇÃO":"ewew"
},
{
"AUTOR":"s",
"INSTITUIÇÃO":"z"
},
{
"AUTOR":"z",
"INSTITUIÇÃO":"s"
},
{
"AUTOR":"Renata ",
"INSTITUIÇÃO":"Guia "
},
{
"AUTOR":"Almddjo",
"INSTITUIÇÃO":"FGF- Faculdade"
}
]
},
];
for(var i=0;i< json.length; i++){
var html = "<tr>";
html +="<td>"+json[i].ID+"</td>";
html +="<td>"+json[i].TÍTULO+"</td>";
html +="<td>"+json[i].TIPO+"</td>";
html +="<td> <a href='trabalhos/"+json[i].ID+".pdf'>" +json[i].ID+"</td>";
html +="</tr>";
$('table tbody').append(html);
}
What I needed would be to filter this, for example everyone who has the same category, everyone who has the same sector and so on and show it in html, but I’m not getting it, if anyone can give me a help with this question