controller code
$rates['poor'] = 10;
$rates['fair'] = 20;
$this->load->view('search_result2', $rates);
//I have tried this in many ways but at least It executes the "success" in ajax file only with above way. other ways I have tried ex :-
//$this->output->set_output(json_encode($rates));
//echo json_encode($rates);
I need to pass this array of bets to ajax
js code
$.ajax({
type:'POST',
url:'some url',
data:{'adID':adID},
//dataType:'JSON', // when I uncommented this it displays nothing. when commented it displays "undefined" on the label below i have created
success:function(rates){
$('#rate_val').html('<label>'+rates.poor+'</label>');
//I have tried this in many ways ex :-
// $('#rate_val').html('<label>'+rates['poor']+'</label>');
// $('#rate_val').html('<label>'+rates[0]+'</label>');
}
});
"undefined" is displayed. I can not get the data that I transferred from the controller. please, help?
source
share