2

我正在尝试使用由 jqMobile 提供支持的 HTML 5 应用程序JSON中的库来绘制一些数据。jqPlot我将以下代码放在 html 页面的“正文”中。我在这里缺少什么吗?

<script>    
$(document).ready(function() {
    // get the JSON data from server
    $.getJSON("myspecialurl", function(data) {
        success: function(data) {
            plotData(data);
        }
    });
    // plot the data
    function plotData(data) {
        ds = [];
        $(data).find('latitude').each(function() {
            ds.push([$(this).attr('answer'), parseInt($(this).attr('count'))]);
        });
        $.jqplot('chart1', [ds], {
            seriesDefaults: {
                renderer: $.jqplot.DonutRenderer
            },
            legend: {
                show: true
            }
        });
    }
}    
</script>

编辑:新的绘图方法

function plotData( data ) {
 // ds = [];
 // $(data).find('latitude').each( function() {
 //   ds.push( [ $(this).attr('answer'), parseInt( $(this).attr('count') ) ] );
 // } );
var array = data.contacts;


$.jqplot('chart1', array[0].latitude, {
seriesDefaults:{
   renderer:$.jqplot.DonutRenderer
},
legend: {show:true}
 });
}
4

1 回答 1

1

粗略的有一个问题,计算机又是对的。这就是您的代码的外观。您正在定义成功,就好像您正在使用ajax方法一样,getJSON成功作为第二个参数传递。

$.getJSON("myspecialurl", function(data) {
    plotData(data);
});

编辑 我还发现您没有ready正确关闭该功能。它应该});不仅仅是}.

于 2012-06-21T15:49:25.563 回答