我按照http://code.google.com/p/gwt-platform/wiki/GoogleAnalytics中的说明操作,并且能够注入GoogleAnalytics但我遇到了一些问题:
他们说你不必调用init(userAccount)因为gin为你做了,我发现这不是真的,我必须自己调用init(),我担心这不是最好的做法。
我尝试使用必要的参数调用trackEvent,但没有任何反应。我正在使用铬;我可以看到脚本已加载到页面并尝试跟踪网络以查找任何传出呼叫,并且我的浏览器没有发送任何内容。
我尝试使用JSNI调用,在GWT中自己编写javascript但是根本没有给出不同的结果。
任何帮助都将非常感谢!谢谢!
答案 0 :(得分:0)
我依赖JSNI和谷歌分析,它对我有用,因为我可以在我的分析控制面板中看到事件。您确定在html文件中放置了正确的初始化吗?我不熟悉你使用的那个gwt-platform库,也许它已经过时了?
以下是我的跟踪方法:
private static native void trackEvent(String category, String action, String label) /*-{
$wnd._gaq.push(['_trackEvent', category, action, label]);
}-*/;
private static native void trackEvent(String category, String action, String label, int intArg) /*-{
$wnd._gaq.push(['_trackEvent', category, action, label, intArg]);
}-*/;
private static native void trackPageview(String url) /*-{
$wnd._gaq.push(['_trackPageview', url]);
}-*/;
不要忘记模块html文件中的初始化:
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-29066117-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();