php - 无法通过使用 JSON 从 MySQL 读取数据来在 d3.js 中呈现简单图形

标签 php mysql d3.js

我正在尝试绘制一个简单的折线图,y 轴上值为 'IV',x 轴上值为 'Time'。我从 MySQL 数据库中读取了这些值。这是我正在使用的 PHP 代码:

<?php
    $username = "root"; 
    $password = "root";   
    $host = "localhost";
    $database="db";

    $server = mysql_connect($host, $username, $password);
    $connection = mysql_select_db($database, $server);

    $myquery = "SELECT  data.IV, data.Time FROM  data";
    $query = mysql_query($myquery);

    if ( ! $myquery ) {
        echo mysql_error();
        die;
    }

    $data = array();

    for ($x = 0; $x < mysql_num_rows($query); $x++) {
        $data[] = mysql_fetch_assoc($query);
    }

    echo json_encode($data);     

    mysql_close($server);
?>

这是生成的 JSON:

[{"IV":"230.8","Time":"15:01:17+22\r"},{"IV":"233.7","Time":"15:06:57+22\r"},{"IV":"230.8","Time":"15:36:25+22\r"},{"IV":"234.5","Time":"15:40:38+22\r"},{"IV":"238.7","Time":"15:41:39+22\r"},{"IV":"238.7","Time":"15:41:50+22\r"},{"IV":"238.7","Time":"15:43:05+22\r"},{"IV":"230.8","Time":"15:01:17+22"},{"IV":"223.8","Time":"15:52:17+22"}]

因此,我修改了在网上找到的示例来尝试渲染数据。然而我得到的只是一张空白页。这是我的代码,有人可以告诉我我做错了什么吗?我已经被这个问题困扰好几天了。

<!DOCTYPE html>
<meta charset="utf-8">
<style> /* set the CSS */

body { font: 12px Arial;}

path { 
    stroke: steelblue;
    stroke-width: 2;
    fill: none;
}

.axis path,
.axis line {
    fill: none;
    stroke: grey;
    stroke-width: 1;
    shape-rendering: crispEdges;
}

</style>
<body>

<!-- load the d3.js library --> 
<script type="text/javascript" src="d3/d3.v3.js"></script>

<script>

// Set the dimensions of the canvas / graph
var margin = {top: 30, right: 20, bottom: 30, left: 50},
    width = 600 - margin.left - margin.right,
    height = 270 - margin.top - margin.bottom;

// Set the ranges
var x = d3.time.scale().range([0, width]);
var y = d3.scale.linear().range([height, 0]);

// Define the axes
var xAxis = d3.svg.axis().scale(x)
    .orient("bottom").ticks(5);

var yAxis = d3.svg.axis().scale(y)
    .orient("left").ticks(5);

// Define the line
var valueline = d3.svg.line()
    .x(function(d) { return x(d.IV); })
    .y(function(d) { return y(d.Time); });

// Adds the svg canvas
var svg = d3.select("body")
    .append("svg")
        .attr("width", width + margin.left + margin.right)
        .attr("height", height + margin.top + margin.bottom)
    .append("g")
        .attr("transform", "translate(" + margin.left + "," + margin.top + ")");

// Get the data
d3.json("gj.php", function(error, data) {
    data.forEach(function(d) {
        d.IV = +d.IV;
                d.Time = +d.Time;
    });

    // Scale the range of the data
    x.domain(d3.extent(data, function(d) { return d.IV; }));
    y.domain([0, d3.max(data, function(d) { return d.Time; })]);

    // Add the valueline path.
    svg.append("path")      // Add the valueline path.
        .attr("class", "line")
        .attr("d", valueline(data));

    // Add the X Axis
    svg.append("g")         // Add the X Axis
        .attr("class", "x axis")
        .attr("transform", "translate(0," + height + ")")
        .call(xAxis);

    // Add the Y Axis
    svg.append("g")         // Add the Y Axis
        .attr("class", "y axis")
        .call(yAxis);

});

</script>
</body>

这是我所看到的屏幕截图: enter image description here

我怀疑问题在于时间末尾存在 +(digits)\r。但是我需要处理这种格式的数据。

最佳答案

如果在尝试将时间强制转换为数字后对数据数组执行 console.log,您将看到每个对象的 Time 属性为 NaN,这会阻止其渲染。查看 d3 的时间格式化函数,在转换为数字之前将数字字符串解析为实际的 javascript 日期对象。

https://github.com/mbostock/d3/wiki/Time-Formatting

关于php - 无法通过使用 JSON 从 MySQL 读取数据来在 d3.js 中呈现简单图形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18271793/

相关文章:

javascript - 格式化线性刻度大数将G替换为B

javascript - 为什么 HMAC sha256 在 PHP 和 Javascript 上返回不同的值

php - PayPal Rest-api-sdk-php 与 Laravel 4

MySQL : "Appending more data to a column"

php - 使用 sha512 的安全 php 注册失败

java - 数据库中的随机值

javascript - 在dimplejs气泡图中显示每个气泡内的标签

javascript - 从选择中排除元素

php - PHP 有线程吗?

php - 在 Laravel 4 中将 Eloquent 模型返回为 JSON