0

我的 php 代码通过这个链接产生类似的东西getPower.php?year=2012&country=tr

"Kasan":[[1,50]]
"Tasan":[[1,51],[2,52],[3,52]]
"Hasan":[[1,50]]
"Masan":[[1,51],[2,52],[3,52]]

使用此代码;

$row = $result->fetch_assoc();

echo json_encode($row['teamName']). ":" ;

putPowerbyTeam($db,$row['teamID'],$year); //End with echo "json_encode($returnArray);"  

echo "\n";

我正在使用这段代码将它们转换为 JavaScript 对象;

$.ajax({type: "GET",
url: "getPower.php",
data: {year : "year", country : "country"},
success: function(JSONText) {

    var lines = JSONText.split('\n');

    $.each(lines,function(lineNo,line)
                    {
        var mainItems = line.split(':');
        chart.series[lineNo].name = jQuery.parseJSON(eval(mainItems[0]));
        chart.series[lineNo].setData(jQuery.parseJSON(eval(mainItems[1])), true);
    });

},
error: function (xhr, ajaxOptions, thrownError) {
    alert(xhr.status);
    alert(thrownError);
}

我是一个错误,说不能拆分空值。所以,返回 null 但我不能确定这个 javascrip 代码的任何部分。

那么,为什么会返回 null 呢?我能做些什么?其余的好吗?

4

2 回答 2

2

你可以dataType这样使用:

$.ajax({type: "GET",
url: "getPower.php",
data: {year : "year", country : "country"},
dataType: 'json',
success: function(JSONText) {

// do something
于 2013-01-04T16:44:57.260 回答
1

不要尝试使用多个echoand构建您的 JSON json_encode。使用一个大的关联数组,然后echo json_encode(array).

像这样的东西:

$array = array();

$teamName = $row['teamName'];

$array[$teamName] = putPowerbyTeam($db,$row['teamID'],$year); // Return the array instead of doing json_encode($returnArray);

echo json_encode(array);
于 2013-01-04T16:45:37.103 回答