Функция обратного вызова ajaxSubmit не срабатывает - PullRequest
3 голосов
/ 23 мая 2011

из Загрузка файлов с помощью jQuery и CodeIgniter (но без обновления страницы)

@ cbrandolino предлагают мне использовать плагин формы jQuery для решения моей проблемы.Это работало хорошо, за исключением одной проблемы, функция обратного вызова не срабатывает, как я ожидал.

Вот мой модифицированный код
++ Javascript ++

$('#send_button').live('click', function(){
    var options = {
        url: 'formHandle/add',
        success: function(){
            alert('something');
        }
        //I tried both function() or function(data) 
        //or a function created outside $(document).ready()
        //None of them works
    };
    $('#new_entry_form').ajaxSubmit(options);
})

++ Контроллер ++

function add(){
    $array = array(
        'title' => $this->input->post('title'),
        'description' => $this->input->post('description'),
        'content' => $this->input->post('content'),
        'start' => $this->input->post('start'),
        'due' => $this->input->post('due'),
        'price' => $this->input->post('price'),
        'promotion_price' => $this->input->post('promotion_price'),
        'website' => $this->input->post('website'),
        'author' => $this->input->post('author'),
    );

    $config['upload_path'] = './uploads/';
    $config['allowed_types'] = 'gif|jpg|png';
    $config['overwrite'] = false;
    $config['remove_spaces'] = true;
    $config['encrypt_name'] = true;

    $this->load->library('upload', $config);
    if($this->upload->do_upload('picture')){
        $array['picture'] = $this->upload->file_name;
        $this->load->model('entry_model');
        $this->entry_model->insertEntry($array);
        echo 'true'; 
        //I tried $this->load->view, echo or return
        //none of them works
    }else{
        echo 'false';
    }
}

Загрузка файла работала, файл был загружен в определенную папку.
Вставка данных работала, данные были вставлены в базу данных, как и ожидалось.
Единственная проблема, которую я имею, этофункция обратного вызова.

У вас есть идеи, как это исправить?Мне нужно показать результат вставки данных.

Обновление:
Добавление возврата false мне ничего не поможет.Все еще не работает

Ответы [ 2 ]

2 голосов
/ 23 мая 2011

запись функция обратного вызова в опции, ясно написано здесь

$(document).ready(function() { 
var options = { 
    target:        '#output2',   

    success:       showResponse  // post-submit callback 
 }; 

// bind to the form's submit event 
$('#myForm2').submit(function() { 
    // inside event callbacks 'this' is the DOM element so we first 
    // wrap it in a jQuery object and then invoke ajaxSubmit 
    $(this).ajaxSubmit(options); 

    // !!! Important !!! 
    // always return false to prevent standard browser submit and page navigation 
    return false; 
}); 
}); 

function showResponse(responseText, statusText, xhr, $form)  { 
    // for normal html responses, the first argument to the success callback 
    // is the XMLHttpRequest object's responseText property 

    // if the ajaxSubmit method was passed an Options Object with the dataType 
    // property set to 'xml' then the first argument to the success callback 
    // is the XMLHttpRequest object's responseXML property 

    // if the ajaxSubmit method was passed an Options Object with the dataType 
    // property set to 'json' then the first argument to the success callback 
    // is the json data object returned by the server 

    alert('status: ' + statusText + '\n\nresponseText: \n' + responseText + 
        '\n\nThe output div should have already been updated with the responseText.'); 
}
1 голос
/ 23 мая 2011

Ваша форма имеет onsubmit = "return false;" ??

...