如何在函数中创建循环,然后将其发送到JSON文件

时间:2018-06-22 11:09:40

标签: javascript ajax

因此,我有我的JSON文件,但是我还需要通过循环将某个URL发送到JSON。

这是我设置所有内容的地方:

function setMainObjectArray() {
    var exercises = [];
    var eBlocks = $('.eBlock');

    eBlocks.each(function(i, eBlock) {
        var exObject = {
            word: $(eBlock).find('input.ExerciseGetWordInput').val(),
            syllables: []
        };

        $(eBlock).find('input.syllable').each(function(j, syll) {
            exObject.syllables.push($(syll).val());
        });
        exercises.push(exObject);
    });
    return exercises;
}

这是我的ajax保存功能:

function saveExerciseAjaxCall() {
    console.log(setMainObjectArray());
    $.ajax({
        url: 'saveJson.php',
        type: 'POST',
        data: {
            id: getUrlParameter('id'),
            getExerciseTitle: $('#getExerciseTitle').val(),
            language: $('#languageSelector').val(),
            application: 'lettergrepen',
            'main_object': {
                title: $('#getExerciseTitle').val(),
                language: $('#languageSelector').val(),
                exercises: setMainObjectArray()
            },
            dataType: 'json'
        }
    }).done(function(response) {

    }).fail(function(jqXHR, textStatus, errorThrown) {
        console.log(jqXHR);
        console.log(errorThrown);
        console.log(textStatus);
    });
}

我想我需要通过function setMainObjectArray()

var audioId = MEDIAARRAY.audio.lowercase.indexOf(exObject['exerciseGetWordInput'].toLowerCase() + '.mp3');
var audio_link = '';
if (audioId > -1) {
    exObject['audio'] = 'https://TheUrlServer' + MEDIAARRAY.audio.path + MEDIAARRAY.audio.files[audioId];
}

但是我不知道如何在我的函数setMainObjectArray中实现它。我不完全确定循环是否以正确的方式编写,我对javascript还是很陌生,然后将其放入我的ajax调用中(因为它是链接)。

0 个答案:

没有答案