0

我在 zymic.com 上有一个 FTP 设置。我有一个名为 testJson.json 的 json 文件和一个名为 index.php 的 php 文件(显然是默认值)。我在 testJson.json 文件中有一些来自传感器的温度数据。我想使用 highcharts 将其显示到网站(index.php)上。我在同一目录中同时拥有 testJson.json 和 index.php 文件。虽然我相信我做得对,但我没有得到结果。下面是我的 index.php 代码

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript"      src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
   $.getJSON('testJson.json', function(data) {
      // Create temperature chart
      $('#container').highcharts('StockChart', {
         rangeSelector : {
    selected : 1
     },
         title : {
    text : 'Temperature graph in °C'
     }, 
     series : [{
    name : 'Temperature',
    data : data,
    tooltip: {
       valueDecimals: 2
    }
     }]
      });
   });
});

</script>
</head>
<body>
<script src="Highstock-1.3.2/js/highstock.js"></script>
<script src="Highstock-1.3.2/js/modules/exporting.js"></script>
<div id="container" style="height: 500px; min-width: 500px"></div>
</body>
</html>
4

1 回答 1

1

我认为您需要在加载 hightstock.js 和 exporting.js 后放置脚本

于 2013-06-26T15:47:58.743 回答