如何在Google Analytics中正确使用自定义变量?我使用下面的代码,这是我注意到的
我做错了什么?
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);
})();
答案 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)