意外令牌'<' - AJAX

时间:2012-03-23 02:34:10

标签: php javascript html ajax json

所以我正在尝试将数组输出到javascript,这将告诉我某些流是在线还是离线。每当我尝试提醒输出时,它都会给我一个意外的令牌'<'在我的文件的第1行。这让我疯了。我的代码非常简单:

HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Streaming</title>
    <style type="text/css">
        *{margin:0px;padding:0px;font-family:Arial}
        #container{margin:0 auto;width: 1000px}
        #player iframe{width:625px;height:510px;}
        #player{float:left}
    </style>
    <script type="text/javascript" src="dynamic.js" ></script>
</head>
<body>
    <div id="container">
        <div id="player">
            <iframe src="streams/tx3fate.html" frameborder="0" scrolling="no"></iframe>
        </div>
        <iframe frameborder="0" scrolling="no" id="chat_embed" src="http://twitch.tv/chat/embed?channel=day9tv&amp;popout_chat=true" height="500" width="350"></iframe>
    </div>
</body>
</html>

的Javascript

function getActive() {
    if(window.XMLHttpRequest) {
        xmlhttp = new XMLHttpRequest();
    } else {
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    }

    xmlhttp.onreadystatechange = function() {
        if(xmlhttp.readyState == 4 && xmlhttp.status == 200) {  
            var test = JSON.parse(xmlhttp.responseText);
            window.alert(test);
        }
    }

    xmlhttp.open("GET", "streams.php", true);
    xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    xmlhttp.send('check=true');
}

getActive();

PHP

<?php  
    if($_GET['check'] == true) {
        $streams = array(
            "mxgdichello" => "offline",
            "day9tv" => "offline",
            "tx3fate" => "offline",
            "wochtulka" => "offline",
            "unawaresc2" => "offline",
            "xerse" => "offline",
            "atree2425" => "offline",
            "sc1pio"  => "offline",
            "lokk_2" => "offline",
            "tsremark" => "offline",
            "ognastarcraft" => "offline"
        );

        foreach($streams as $index)    {
            $json_file = @file_get_contents("http://api.justin.tv/api/stream/list.json?channel={$index}", 0, null, null);
            $json_array = json_decode($json_file, true);

            if ($json_array[0]['name'] == "live_user_{$index}") {
                $index = "online";
            } else {
                $index = "offline";
            }
        }

        echo json_encode($streams);
    }
?>

我的iframe html文件只包含flash嵌入对象。我不知道发生了什么 - 我知道$streams肯定会返回一个数组,所以不知道该怎么做。我在我的javascript调试器中收到错误。

2 个答案:

答案 0 :(得分:2)

听起来它无法解析返回的json(xmlhttp.responseText) 而不是查看响应文本的值以查看无法解析的原因

    if(xmlhttp.readyState == 4 && xmlhttp.status == 200)
    {   
        console.log(xmlhttp.responseText);
        var test = JSON.parse(xmlhttp.responseText);

尝试将参数添加到网址,我认为你只能发送带有send()的参数用于POST请求

 xmlhttp.open("GET", "streams.php?check=true", true);
 xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
 xmlhttp.send();

答案 1 :(得分:0)

通常这意味着您的请求失败,并且您可能正在获取html页面而不是JSON响应。 Parse失败,因为它接收的是html,而不是JSON对象。验证ajax的目标url是否仅返回有效的JSON,包装响应的任何模板系统,或者404将为您提供响应。

您还可以使用firebug或chrome开发人员工具,查看您的XHR请求并查看正文中的内容,如果它不是{my_data:''}那么您可能会遇到问题。

另外请注意,您不需要“?&gt;”在你的文件的最后,如果你最终得到一个额外的行,他们会导致更多的问题,甚至Zend建议你不要使用它们。