我正在尝试使用流星来使用谷歌图表系统获取图表更新。所以我要做的是创建一个集合,然后将其提供给谷歌图表的“数据”(例如饼图)。问题是 google 图表的 javascript 代码只在标签中工作,因此我不能使用 Meteor 的简单诱惑,它只在 . 所以我所做的就是将以下代码放入我的 html 的 head 部分:
<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']});
</script>
and then in Meteor.startup in Meteor.is_client i call :
google.setOnLoadCallback(drawChart);
in drawChart the data is defined as follow:
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]
]);
我用从我的集合中获得的数据提供数据的 addRows。但是当我尝试使用客户端 mongo 向它添加数据时,它不会自动更新。它只是在我刷新页面时出现。你知道我如何知道我的收藏中的变化,然后根据我的 Mongo 收藏中的变化实时重新渲染我的图表吗?谢谢。