gpt4 book ai didi

javascript - 使用不以 "x/y"作为键的 JSON 数据

转载 作者:行者123 更新时间:2023-11-28 02:15:14 25 4
gpt4 key购买 nike

我是这个 JSON 和图形世界的新手,第一次使用 Rickshaw。

在示例中,它使用以 x 和 y 作为键的 JSON 数据:

{ x: 1910, y: 92228531 }

我的数据具有以下键、值:

{"sampletime":"2013-05-11 11:47:54","samplevalue":"4.39"}

是否可以告诉 Rickshaw 使用该格式的数据,或者可以说有办法动态转换此 JSON 数据吗?

更新:

将 SQL 更改为:

select sampletime as "x", samplevalue AS "y" from rn_qos_data_0011 order by sampletime desc limit 10;

最佳答案

将 SQL/PHP 更改为:

$sql = mysql_query("select sampletime as \"x\", samplevalue AS \"y\" from rn_qos_data_0011 order by sampletime desc limit 10;");

$results = array();
while($row = mysql_fetch_array($sql))
{
$results[] = array(
'x' => strtotime($row['x']),
'y' => (float)$row['y']
);
}
header('Content-Type: application/json');
echo json_encode($results);

请注意,需要转换为纪元时间和 float 。

关于javascript - 使用不以 "x/y"作为键的 JSON 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16496392/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com