' SyntaxError:意外的输入结束'。解析JSON时出错?

时间:2015-10-08 17:12:49

标签: javascript php json ajax syntax-error

我有这个AJAX功能:

function fetchSocialCount(type,fileSrc){
    var count = null;
    var req = new XMLHttpRequest();
    req.onload = function(){
        if(req.status === 200 && req.readyState === 4){
            console.log(req.responseText);
            count = JSON.parse(req.responseText);
        }
    }
    req.open("GET","../scripts/php/returnSocialCount.php?type=" + type + "&fileSrc=" + fileSrc,false);
    req.send();
    if(count !== null){
        return count;
    }
    else{
        console.log("The AJAX request has failed.");
    }
}

但是当我运行它时,我收到'SyntaxError: Unexpected end of input'.错误。 Chrome开发工具还以蓝色覆盖了count = JSON.parse(req.responseText);部分,因此我猜测我接收的JSON有问题。从PHP脚本中,我发送了一个非常复杂的JSON对象,所以我尝试发送一个非常基本的JSON对象,它没有问题。

这是发送响应的PHP脚本的一部分:

echo '{"likes":'.$json->videoListArray[$i]->likes . ',"dislikes":' . $json->videoListArray[$i]->dislikes . '}';

echo的语法有问题吗?问题是什么?

感谢。

2 个答案:

答案 0 :(得分:3)

您需要使用json_encodePHP json_encode manual page)和echo,如下所示:

echo json_encode(array('likes'=>$json->videoListArray[$i]->likes, 'dislikes'=>$json->videoListArray[$i]->dislikes));

我的猜测是你的回复中有逗号,分号或其他字符导致问题。 json_encode将确保所有内容都格式化。

编辑 - War10ck打败了我。

答案 1 :(得分:1)

您的JSON中可能存在您返回的语法错误。出于这个原因,手动创建JSON通常不是一个好主意。尝试创建一个关联数组,然后使用json_encode()将所需数据返回到ajax调用:

// Create the array
$data = array();

// Add the data
$data['likes'] = $json->videoListArray[$i]->likes;
$data['dislikes'] = $json->videoListArray[$i]->dislikes;

// Generate JSON from the array and return the desired results
echo json_encode($data);

参考文档: