0

我的脚本有问题,它没有显示图表和数据 搜索了整个论坛,找不到答案 为您提供我用于我的项目的代码

这是我的 js 代码:

$(function() {
$.getJSON('http://store.steamaccounts.me/test/jsonp.php?filename=test.json&callback=?', function(data) {

    // Create the chart
    window.chart = new Highcharts.StockChart({
        chart : {
            renderTo : 'container'
        },

        rangeSelector : {
            selected : 1
        },

        title : {
            text : 'test'
        },

        series : [{
            name : 'test',
            data : data,
            type : 'area',
            threshold : null,
            tooltip : {
                valueDecimals : 2
            },
            fillColor : {
                linearGradient : {
                    x1: 0, 
                    y1: 0, 
                    x2: 0, 
                    y2: 1
                },
                stops : [[0, Highcharts.getOptions().colors[0]], [1, 'rgba(0,0,0,0)']]
            }
        }]
    });
});

这是我的 php 代码:

<?php

$data = '{}'; // json string

if(array_key_exists('callback', $_GET)){

    header('Content-Type: text/javascript; charset=utf8');


    $callback = $_GET['callback'];
    echo $callback.'('.$data.');';

}else{
    // normal JSON string
    header('Content-Type: application/json; charset=utf8');

    echo $data;
}

我将不胜感激任何帮助谢谢您的快速回复

4

3 回答 3

0

从 JQuery 1.4 开始,如果您的 JSON 文件包含错误,则 getJSON 方法会静默失败。以防万一最好检查返回的 JSON 数据。

于 2013-01-31T06:59:23.383 回答
0

我看到你的数据是空的,所以请确保你得到任何值。

于 2013-02-04T11:03:51.673 回答
-1

我认为问题可能在于变量$data从未从空的 json 对象更改{}。您可以使用 php 函数创建一个 json 字符串json_encode

json_encode接受一个数组作为输入并将其转换为存储为字符串的 json 兼容对象。

然后您可以回显字符串以返回到浏览器。

于 2013-01-31T03:10:55.030 回答