我使用AmCharts创建折线图。所以我试图将我的mysql数据库中的数据分配给图表,然后使用它。
AmCharts.makeChart("chartdiv", {
"type": "serial",
"dataLoader": {
"url": "data.php",
"format": "json"
},
// we'll skip the rest of the config for now //
} );
data.php文件具有连接MySQL服务器的PHP脚本,加载数据并以JSON格式输出数据。
但我无法将变量(id)传递给data.php文件以查询特定帖子(使用帖子ID)
答案 0 :(得分:0)
我会在SQL中更改我的Select子句并执行:
WHERE id = 1
我认为应该这样做。但是也有可能在JSON中执行此操作并且您可以将ID传递给URL:
AmCharts.makeChart( "chartdiv", {
"type": "serial",
"dataLoader": {
"url": "data.php?ID=1",
"format": "json"
},
// we'll skip the rest of the config for now
// ..
} );
但请问PHP或JSON专家。