1

当我将此代码粘贴到我的脚本中时怎么会:

https://code.google.com/apis/ajax/playground/?type=visualization#using_the_query_language

并运行它,它给了我这个错误:

ReferenceError:未定义“google”。

?!

4

1 回答 1

0

需要先加载“Google Visualization API”:按照快速入门

您可以将下面的代码段复制到计算机上的文件中,然后在浏览器中打开它以显示如上所示的饼图:

链接中的代码片段:

<!--Load the AJAX API-->
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">

  // Load the Visualization API and the piechart package.
  google.load('visualization', '1.0', {'packages':['corechart']});

  // Set a callback to run when the Google Visualization API is loaded.
  google.setOnLoadCallback(drawChart);

  // Callback that creates and populates a data table,
  // instantiates the pie chart, passes in the data and
  // draws it.
  function drawChart() {
    // !!! Use Google Visualization API here !!!
  }
</script>

请注意,Google Visualization APIdrawChart调用后可用。

于 2013-02-08T09:01:23.007 回答