使用Google Analytics跟踪Web应用访问者

时间:2013-04-06 13:25:45

标签: iphone ios ipad analytics

我正试图通过我的iPhone / iPad网络应用程序(全屏模式)跟踪访问我网站的访问者。

我添加了此代码(在原生Google Analytics跟踪器上方):

<script type="text/javascript">
           if (window.navigator.standalone == true) {
        _gaq.push(['_setCustomVar',
            5,
            'Full Screen Mode visitors',
            'full-screen-mode-visitors',
            3
            ]);
            _gaq.push(['_trackPageview']);
            }
</script>

但Google Analytics中没有自定义变量...我的代码中有什么问题吗?我的网络应用在全屏模式下正常加载,但Google Analytics中没有记录自定义变量。

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

您的代码看起来不错。 但也许您可以尝试添加一个if else语句来跟踪那些不在Web应用程序模式下?当然具有不同的价值。 如果他们显示,Google Analytics中缺少的自定义变量必须与window.navigator.standalone属性有关,而不是与setCustomVar本身有关。