Скажите вот в этом примере что не так, ответ ошибка
function ajax(txt) {
alert(txt)
$.ajax({
type: "POST",
dataType: 'json',
url: "/server_rating/rating",
data: {txt:txt},
cache: false,
success: function(post){
alert(post)
},
error: function(xhr, str){
alert('Возникла ошибка: ' + xhr.responseCode);
}
});
}
class Server_rating extends CI_Controller {
public function __construct()
{
parent:: __construct();
}
public function rating(){
header('Content-Type: application/json; charset=utf-8');
$post=$_POST['txt'];
echo json_encode($post);
}
}