Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Envio de formulário CodeIgniter e AJAX


Os data atributo da chamada ajax é inválido. Deve estar no formato JSON { key: $('.feed-input').val() } ou no formato de consulta 'key='+$('.feed-input').val() .Também existe um debugger desnecessário variável no método de sucesso.

Um código de trabalho pode ser:
$('form#feedInput').submit(function(e) {

    var form = $(this);

    e.preventDefault();

    $.ajax({
        type: "POST",
        url: "<?php echo site_url('dashboard/post_feed_item'); ?>",
        data: form.serialize(), // <--- THIS IS THE CHANGE
        dataType: "html",
        success: function(data){
            $('#feed-container').prepend(data);
        },
        error: function() { alert("Error posting feed."); }
   });

});