如何在Google Analytics中正确使用CustomVars?

时间:2010-11-26 18:58:50

标签: javascript google-analytics

如何在Google Analytics中正确使用自定义变量?我使用下面的代码,这是我注意到的

  1. 我只看到'一个'在获取请求中
  2. 24小时后,只有'一个'出现
  3. 在评论出一个并更改2个vars以使用slotIndex-1后,我注意到没有通过GA的vars
  4. 我做错了什么?

    var _gaq = _gaq || [];
    _gaq.push(['_setAccount', 'UA-12345678-1']);
    
    if (cond) {
        _gaq.push(['_setCustomVar',1, 'one', d1,1]); 
        _gaq.push(['_setCustomVar',2, 'name two', "sz",1]); 
        _gaq.push(['_setCustomVar',3, 'name3', boolVal,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);
    })();
    

1 个答案:

答案 0 :(得分:1)

代码看起来很好,但您可能希望确保变量存在并转换为字符串。

if (cond) {
    if (typeof d1 !== "undefined") {
        _gaq.push(['_setCustomVar', 1, 'one', d1.toString(), 1]);
    }
    _gaq.push(['_setCustomVar', 2, 'name two', "sz", 1]);
    if (typeof boolVal !== "undefined") {
        _gaq.push(['_setCustomVar', 3, 'name3', boolVal.toString(), 1]);
    }
}

此外,自定义变量可能落后于GA UI中显示的_trackPageview。 (来源:Mastering Google Analytics Custom Variables