我在使用jQuery AJAX从数据库中获取数据时遇到问题我已经阅读并尝试过jQuery数据类型jQuery,但是它没有用。我在console.log(data)
返回的所有内容都是object
,而数据库中的数据是对象,但我不知道如何在视图中显示它。请提出任何建议。
这是我的控制器。
function fetch(){
$data_fetch = array(
'id' => $this->input->post('txt_id')
);
$data['records'] = $this->form_model->fetch_model($data_fetch);
$results = json_encode($data);
$this->output->set_content_type('application/json');
$this->output->set_output($results);
}
这是我的jQuery AJAX
$.ajax({
type : 'POST',
url : base_url + 'index.php/form_controller/fetch',
data : {txt_id : id },
dataType : 'JSON',
success : function(data){
// var re = JSON.parse(data);
// var re = $.parseJSON(data);
// var data = JSON.parse(data);
alert(data.name);
console.log(data);
},
error : function(data){
console.log('erronr in fetch');
}
});
data.name
在警告中显示undefined
。任何帮助将不胜感激。
答案 0 :(得分:0)
您不需要使用JSON.parse
变量数据已经是JSON,因此只需将其与任何其他JSON一样使用。