1

实际上,我正在尝试为使用 jQChart 插件的所有报告制作图表。我已经通过 PHP 完成了图表报告,但我的头脑需要带有动画的报告,所以我去了 jQChart,但我不知道如何将 assoc 数组值传递给 Ajax。

$results = mysql_query("SELECT vaccum_value,date FROM vaccum_details where serial_number='10P1005'");
$data1=array();
while ($row = mysql_fetch_array($results)) 
{
    $data1[$row['date']]=$row['vaccum_value'];
}  

$data = Array ( "28-Sep-2012" => 31.6, "04-Oct-2012" => 0.99, "03-Oct-2012" => -3 ); 

但我需要将此结果传递给 Ajax,然后转换为如下所示:

数据:[['2012 年 9 月 28 日',31.6],['2012 年 10 月 4 日',0.99],['2012 年 10 月 3 日',-3]]

详细脚本供您参考:

<script lang="javascript" type="text/javascript">
$(document).ready(function () { 
$('#jqChart').jqChart({ title: { text: 'Animation' }, animation: { delayTime: 1, duration: 2 }, series: [ { type: 'line', title: 'Line', data: [['A', 69], ['B', 57], ['C', 86], ['D', 23], ['E', 70], ['F', 60], ['D', 88], ['H', 22]] } ] }); }); 
</script>
4

2 回答 2

1

使用 JSON 对数组进行编码并传递给 jQuery。

   json_encode($array);

在 jQuery 中,解析 JSON 字符串以获取数组值:

  jQuery.parseJSON(jsonstring);

检查: http: //php.net/manual/en/function.json-encode.phphttp://api.jquery.com/jQuery.parseJSON/

使用 jQuery.get 从 jQuery 调用 PHP 脚本 - http://api.jquery.com/jQuery.get/

于 2012-10-10T05:46:37.937 回答
0
$results = mysql_query("SELECT vaccum_value,date FROM vaccum_details where serial_number='10P1005'");
$data1=array();
while ($row = mysql_fetch_array($results)) 
{
    $data1[$row['date']]=$row['vaccum_value'];
}
json_encode($data1);

在你的 jQuery+ajax

$.ajax({
        type:"POST",
        data:'serial_number=10P1005',
        url: "your_file.php",
        success: function(jsonData){
            var jsonArray = eval('(' + jsonData + ')');

            if(jsonArray.date == 'condition'){
                // some action here
            }else{
                // some other action hera
            }



        }
    },"json");
于 2012-10-10T05:55:28.383 回答