Google Visualization库未加载 - 语法错误

时间:2014-01-11 00:11:17

标签: charts google-visualization syntax-error

我正在尝试构建一个图表仪表板作为Google UiApp,并且在加载必要的库时遇到问题。我在第8行得到了一个syntext错误,这是“google.load('可视化',......)行。我实际上正在复制并粘贴教程中的示例,该行不断出现错误。想法?我对此很陌生,只是按照这里的指示试图拼凑一个演示:https://google-developers.appspot.com/chart/interactive/docs/basic_load_libs

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

// Load the Visualization API library and the piechart library.
google.load('visualization', '1.0', {'packages':['corechart', 'piechart']});
google.setOnLoadCallback(drawChart);
  // insert charts here

</script>

1 个答案:

答案 0 :(得分:0)

这就是我使用它的方式,这对我有用(例如:http://jsfiddle.net/UT2G7/):

google.load('visualization','1.0',{'packages':['corechart']});