我想创建一个具有 x 轴日期值的 Flot 图。我不想手动编写日期值,所以我将它们存储在数据库中,如 TIMESTAMP 值。与数据库的连接如下:
<?php
$pdo = new PDO('mysql:host=example.com; dbname=database', 'user', 'password')
?>
javascript 代码如下所示:
var graphData = [ {
// first graphic
data: [ [(new Date("2006-06-12 19:13:37")).getTime(), 600], [(new Date("2006-06-21 19:13:37")).getTime(), 550], [(new Date("2006-07-1 19:13:37")).getTime(), 600]],
color: '#77b7c5',
points: { radius: 4, fillColor: '#77b7c5' }
}, {
//the second graphic
data: [[(new Date("2006-06-11 19:13:37")).getTime(), 3210.196] , [(new Date("2006-07-3 19:13:37")).getTime(), 3310.196], [(new Date("2006-07-23 19:13:37")).getTime(),3875.422]],
color: 'red'
}
];
我想直接从我的数据库中获取这些日期值并创建我使用 JavaScript 的图形。我知道在 php 中使用数据库更安全,但我不知道如何使用数据库中的值显示浮点图形。有任何想法吗?