I data
l'attributo della chiamata ajax non è valido. Dovrebbe essere in formato JSON { key: $('.feed-input').val() }
o in formato di query 'key='+$('.feed-input').val()
.Inoltre c'è un debugger
non necessario variabile nel metodo di successo.
Un codice funzionante potrebbe essere:
$('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."); }
});
});