sql >> Base de Datos >  >> RDS >> Mysql

Envío de formulario de CodeIgniter y AJAX

Los data El atributo de la llamada ajax no es válido. Debe estar en formato JSON { key: $('.feed-input').val() } o en formato de consulta 'key='+$('.feed-input').val() .También hay un debugger innecesario variable en el método de éxito.

Un código de trabajo podría 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."); }
   });

});