我使用$.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]
。我怎样才能将其作为纯文本
答案 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