页面级自定义变量未在Google Analytics中显示

时间:2013-04-22 15:57:20

标签: javascript google-analytics

我在Google Analytics(异步代码段)中设置了一些自定义变量,按照其说明配置:

_gaq.push('_setCustomVar', 2, 'price','5800', 3);
_gaq.push('_setCustomVar', 2, 'city','New York', 3);
_gaq.push('_setCustomVar', 2, 'neighborhood','West Village', 3);
_gaq.push(['_trackPageview']);

但是当我转到报告时,这些变量并没有显示出来。你如何访问它们?

1 个答案:

答案 0 :(得分:4)

您有5个插槽,需要为每个插槽分配一个变量。当前代码只会发送最后一个代码,因为它会覆盖前一个代码并占用插槽#2。您可以使用每个插槽,它应该可以在那里工作。

_gaq.push('_setCustomVar', 1, 'price','5800', 3);
_gaq.push('_setCustomVar', 2, 'city','New York', 3);
_gaq.push('_setCustomVar', 3, 'neighborhood','West Village', 3);
_gaq.push(['_trackPageview']);

要查看此数据,只需创建一个自定义报告,如下所示。

enter image description here

这是一个link to this Custom Report。您还可以使用您用于从一个简历向下钻取的订单。