I have a question about the JSON.stringify()
method.
Querying these values in a member tab:
{
"NProjetos": [
{
"idProjeto": 2,
"nomeProjetos": "SGI"
}
],
"cargo": "Desenvolvedor",
"descricao": "Desenvolvedor PHP, JAVA",
"id": 2,
"imgMembros": [
{
"idImg": 2,
"url": "img/diego.png"
}
],
"nome": "Diego Rabelo",
"stats": 3
};
With
JSON.stringify(membro.NProjetos, ['nomeProjetos']); //retorno: [{"nomeProjetos":"SGI"}]
JSON.stringify(membro.nomeProjetos); //não tem retorno.
How could I just get the value, in the "SGI" case?