我正在尝试在Google Analytics跟踪中设置自定义变量,以进行非常粗略的拆分测试。
我在'head'部分末尾使用的代码是
var _gaq = _gaq || [];
_gaq.push(
['_setAccount', 'UA-xxxxxx-xx'],
['_setCustomVar', 1, 'split', '1', 2],
['_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);
})();
页面视图跟踪正常,但我没有在“访问者”部分的用户定义子部分下看到“(未设置)”以外的任何内容。
有人能发现任何错误吗?在异步内容出现之前,我已经使用过旧的ga.js了。
感谢。
答案 0 :(得分:7)
_setCustomVar数据显示在访客“自定义变量”报告中。只有来自_setVar的数据才会显示在“用户定义”报告中。