您好我正在尝试生成一个简单的页面,其中包含几个关于使用谷歌 API 的指标。我一遍又一遍地查看了我可以在网上找到的所有信息,但无法弄清楚它为什么显示空白页。我怀疑我的 json 因为我以前没有使用过它。
getData.php 的 json 输出为:
[{"hostname":"bongo","value":24},{"hostname":"chappie","value":78}]
应该生成仪表的 php 脚本是:
<html>
<head>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript" src="jquery-1.6.4.js"></script>
<script type="text/javascript">
google.load('visualization', '1', {packages:['gauge']});
google.setOnLoadCallback(drawChart);
function drawChart() {
var jsonData = $.ajax({
url: "getData.php",
dataType:"json",
async: false
}).responseText;
var data = new google.visualization.DataTable(jsonData);
var options = {
width: 400, height: 120,
redFrom: 90, redTo: 100,
yellowFrom:75, yellowTo: 90,
minorTicks: 5
};
var chart = new google.visualization.Guage(document.getElementById('chart_div'));
chart.draw(data, options);
}
</script>
</head>
<body>
<div id='chart_div'></div>
</body>
</html>