以下是我的代码:
<head>
<!--Load the AJAX API-->
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">
// Load the Visualization API and the piechart package.
google.load("visualization", "1", {packages:["table"]});
var table = new google.visualization.Table(document.getElementById('chart_div'));
// Set a callback to run when the Google Visualization API is loaded.
google.setOnLoadCallback(drawTable);
var jsonData = ${requestScope.jsonData};
// Create our data table out of JSON data loaded from server.
var data = new google.visualization.DataTable(jsonData);
var view = new google.visualization.DataView(data);
var addButton = document.getElementById('add');
var removeButton = document.getElementById('remove');
function drawTable() {
table.draw(view);
}
removeButton.onclick=function(){
view.hideColumns([1]);
drawTable();
}
drawTable();
</script>
</head>
当我在drawTable()函数中包含以下行时,它可以工作并将它们留在外面(就像我上面的代码中那样)不起作用。
var jsonData = ${requestScope.jsonData};
// Create our data table out of JSON data loaded from server.
var data = new google.visualization.DataTable(jsonData);
var view = new google.visualization.DataView(data);
我想将它们留在外面的原因是因为我试图从另一个函数访问var视图,该函数将在按钮单击时隐藏视图的列。
提前感谢您的帮助。
答案 0 :(得分:0)
google.setOnLoadCallback(drawTable);
的目的是避免在加载库之前调用google api的函数,因为它是由异步加载的。所以每当你使用api时,它应该总是在drawTable()
函数内或在该函数之后运行的其他地方。
为了能够使用drawTable()
之外的数据,你只需要在外面创建var然后在里面修改它:
var view = null;
var table = null;
function drawTable(){
//your code...
var table = new google.visualization.Table(document.getElementById('chart_div'));
//your code...
var view = new google.visualization.DataView(data);
//your code...
}
然后你可以这样做:
removeButton.onclick=function(){
if(view != null && table != null){
view.hideColumns([1]);
table.draw(view);
}
}