在node.js中刷新页面之后,如何获取新生成的数据

时间:2015-09-28 07:57:14

标签: javascript jquery json node.js

实际上我正在使用webservice调用以JSON的形式获取数据。在调用一个宁静的调用后,我将新生成的数据放入traffic.json文件中。

在提交后的node.js中,我无法获取新生成的数据,而是获取以前的数据。

My Area.html:

<!DOCTYPE html>
<meta charset="utf-8">
<head>
<style>
 body {
          font: 10px sans-serif;
        }

        .axis path,
        .axis line {
          fill: none;
          stroke: #000;
          shape-rendering: crispEdges;
        }

    .area {
          fill:#00bfff;
        }


</style>
</head>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>
var margin = {top: 20, right: 20, bottom: 30, left: 50},
        width = 960 - margin.left - margin.right,
        height = 500 - margin.top - margin.bottom;

    var x = d3.time.scale()
        .range([0, width]);

    var y = d3.scale.linear()
        .range([height, 0]);

    var xAxis = d3.svg.axis()
        .scale(x)
        .orient("bottom");

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

    var area = d3.svg.area()
        .x(function(d) { return x(d.timestamp); })
        .y0(height)
        .y1(function(d) { return y(d.total_traffic); });

    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 + ")");

var jsonURL = "http://192.168.7.123:3000/data/traffic";

alert(jsonURL);

d3.json(jsonURL, function(error, data){

alert(data);

       data.forEach(function(d) {
        d.timestamp = d.timestamp;
        d.total_traffic = +d.total_traffic;
      });

    x.domain(d3.extent(data, function(d) { return d.timestamp; }));
    y.domain([0, d3.max(data, function(d) { return d.total_traffic; })]);


  svg.append("path")
      .datum(data)
      .attr("class", "area")
      .attr("d", area);
     svg.append("g")
      .attr("class", "x axis")
      .attr("transform", "translate(0," + height + ")")
      .call(xAxis).append("text")
.attr("x", 875 )
.attr("y", 15 )
.style("text-anchor", "bottom")
      .text("Client");

    svg.append("g")
      .attr("class", "y axis")
      .call(yAxis)
    .append("text")
      .attr("transform", "rotate(-90)")
      .attr("y", 6)
      .attr("dy", ".71em")
      .style("text-anchor", "end")
      .text("Kilo Bytes");


});

</script>

<p align="center">
        <button type="button" class="myButton"
            style="margin-left: auto; margin-right: auto; display: block; margin-top: 0%; margin-bottom: 0%"
            onclick="history.go(-1);">Back</button>
    </p>

</body>
</html>

在Area.html中,在这段代码中我得到的是先前的数据,而不是数据变量中的新数据。

 var jsonURL = "http://192.168.7.123:3000/traffic";

    alert(jsonURL);

    d3.json(jsonURL, function(error, data){ 
alert(data);
 ....
 ....
});

我的app.js:

app.get('/data/traffic',function(req,res) {
  res.sendfile('views/traffic.json');
});

我的traffic.json

[ { "client_ip" : "1.0.230.145" , "timestamp" : "1341667450773" , "total_traffic" : 0} , { "client_ip" : "1.0.230.145" , "timestamp" : "1341667450786" , "total_traffic" : 3} , { "client_ip" : "1.0.230.145" , "timestamp" : "1341667451076" , "total_traffic" : 4} , { "client_ip" : "1.0.230.145" , "timestamp" : "1341667451104" , "total_traffic" : 7} , { "client_ip" : "1.0.230.145" , "timestamp" : "1341667451128" , "total_traffic" : 10}]

我如何克服这个问题?

1 个答案:

答案 0 :(得分:1)

您的代码非常难以阅读,您在页面上组合了js / html / css,它不对。

关于此代码:

app.get('/data/traffic',function(req,res) {
  res.sendfile('views/traffic.json');
});

您只是在此处读取文件中的数据,如果您不更新此文件,则不会更新。创建新的快速路由以保存数据,从此路由中的客户端接收数据,并将其保存到此文件中。

UPD :你的网址不正确:

var jsonURL = "http://192.168.7.123:3000/traffic";

看看你的快递路线,有&#39; / data / traffic&#39; ,而不是&#39; / traffic&#39;