gpt4 book ai didi

meteor - meteor 中的谷歌图表

转载 作者:行者123 更新时间:2023-12-02 09:02:53 25 4
gpt4 key购买 nike

我想将谷歌图表 API 添加到我的应用程序中,我已在标题标记中附加了脚本标记,如下所示,然后将 div 标记添加到我的根模板中,如下所示

 <template name="home">
<head>
<title>sss</title>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
</head>
<body>
<button type="button" id="getData">Get Data</button>
<div id="chart_div"></div>
</body>
</template>

在按钮单击事件中,我添加了图表代码,如this page所示

这是代码

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() {

// Create the data table.
var data = new google.visualization.DataTable();
data.addColumn('string', 'Topping');
data.addColumn('number', 'Slices');
data.addRows([
['Mushrooms', 3],
['Onions', 1],
['Olives', 1],
['Zucchini', 1],
['Pepperoni', 2]
]);

// Set chart options
var options = {'title':'How Much Pizza I Ate Last Night',
'width':400,
'height':300};

// Instantiate and draw our chart, passing in some options.
var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
chart.draw(data, options);
}

我收到以下错误

google is not defined

编辑:当我在外部添加脚本标签并声明 html 页面时,它会添加到 dom 中,当我单击按钮时,整个 dom 会被覆盖,并且不会显示任何内容

感谢任何帮助,谢谢

最佳答案

我并不完全清楚这段代码的上下文,但听起来您遇到了我以前遇到过的加载问题。如果您将回调设置为与 google.load 调用内联,它可能会为您解决此问题。替换这些行:

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

这样:

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

关于meteor - meteor 中的谷歌图表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23783283/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com