0
arrayPerguntas = [{
bloco: $("#bloco-num").val(),
perguntas: [{
numerodapergunta: numeroDaPergunta[0].value,
numerodaperguntaSemPonto: retiraPonto(numeroDaPergunta[0].value),
descricaoQuestao: descricaoQuestao[0].value,
notapergunta: questao[0].value,
tipoQuestao: tipoPerg[0].options[tipoPerg[0].selectedIndex].value
}]
}];
wanted to add inside the array perguntas
and not in the arrayPerguntas, ie in my code is adding so:
{
bloco: "bc-1"
perguntas: [{
numerodapergunta: 1,
numerodaperguntaSemPonto: 1,
descricaoQuestao: "blabla",
notapergunta: 1,
tipoQuestao: "tipo-4"
}]
},{
bloco: "bc-1"
perguntas: [{
numerodapergunta: 2,
numerodaperguntaSemPonto: 2,
descricaoQuestao: "blablabla2",
notapergunta: 2,
tipoQuestao: "tipo-2"
}]
}
wanted to add like this:
{
bloco: "bc-1"
perguntas: [{
numerodapergunta: 1,
numerodaperguntaSemPonto: 1,
descricaoQuestao: "blabla",
notapergunta: 1,
tipoQuestao: "tipo-4"
},{
numerodapergunta: 2,
numerodaperguntaSemPonto: 2,
descricaoQuestao: "blablabla2",
notapergunta: 2,
tipoQuestao: "tipo-2"
}]
}
You can provide the code that generates this Json?
– Leandro Amorim
how are you building json? php?
– Kup
Can you explain these 3 pieces of code better? Can you make a jsFiddle? so it is very easy to help you
– Sergio