在没有插件的情况下将Google Analytics与Phonegap 2.1配合使用?

时间:2012-12-03 15:37:55

标签: cordova google-analytics

我希望在没有带有phoneGap 2.1插件的情况下使用谷歌分析。

我跟着这个帖子:

How to use Google Analytics with Phonegap without a plugin?

步骤:
1.下载ga.js
2.通过向其添加一个字符来修改ga.js文件。在ga.js文件中搜索单词“file:”并将其替换为“_file:” 3.在页面顶部添加Google分析代码

但似乎它在phoneGap 2.1中不起作用。

有人找到了解决这个问题的方法吗?

谢谢


在我的ga.js文件中,我有“_file:”,

在我的index.html中我有这段代码:

<script type="text/javascript" src="js/ga.js"></script> 

并在我的javascript中:

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-36500003-1']);

_gaq.push(['_setDomainName', 'none']);

_gaq.push(['_setAllowLinker', true]);

_gaq.push(['_trackPageview']);


_gaq.push(['_trackEvent', 'IpadVideos', 'Play', 'Gone With the Wind']);

当我参与谷歌的报道时,实时我没有人,而且我的活动已经在第二天检查了,我什么都没有......

我的代码有问题吗?

1 个答案:

答案 0 :(得分:0)

不,我已经使用过它并且它对我有用。 我在iOS和android中使用了phonegap 2.1。

请确保您已将index.html n set damain name中已编辑的ga.js添加为无。

_gaq.push(['_setDomainName', 'none']);

它应该有效。

GA事件有时不会立即注册,所以请等待一段时间再检查。