$ .ajax结果获取为[对象]

时间:2013-10-24 05:43:04

标签: php ajax codeigniter

我使用$.ajax函数将数据传递给php

$.ajax({
         type: "GET",
         url: "http://artinnmedia.com/index/get_gallery",
         data: {movie_id:id},
         complete: function(json){
             alert(json);
          }
      });

,php代码是

    $id =$this->input->get('movie_id');
$movie=$this->site_model->get_movie_single($id);
extract($movie[0]);
    if($gallery_id==null)
    {   
    print 0;
    }

    else
    {
    print $gallery_id;
    }

现在问题是结果是$.ajax函数作为[Object object]。我怎样才能将其作为纯文本

2 个答案:

答案 0 :(得分:4)

使用success,而不是:

success: function(json){
    console.log(json);
}

答案 1 :(得分:0)

试试这个

$.ajax({
         type: "GET",
         url: "http://artinnmedia.com/index/get_gallery",
         data: {movie_id:id},

         complete: function(json){
             console.log(json); // check data here in your browser console.
          }
      });

您可以在浏览器控制台中查看输出。您可以在Google Chrome浏览器中使用ctrl + shift + J