Help for building a json file

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
            }]
        }];

I wanted to add inside the array perguntas and not in the QuestionsArray, ie my code is adding like this:

        {
            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"
            }]
        }

I 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"
            }]
        }
    
asked by anonymous 29.07.2015 / 23:43

1 answer

0

Why do not you try this? It will help you build the file without errors.

link

    
30.07.2015 / 16:36