我正在使用Google Analytics debugger tool Chrome。
实际上我想要的是查看是否正在制作请求然后在Google Analytics中查看我的自定义变量,我是盲目编码。
我在localhost中尝试这个:
_gaq.push(['_setCustomVar', 1, 'city', 'delhi', 3]);
_gaq.push processing "_setCustomVar" for args: "[1,city,delhi,3]": ga_debug.js:18
0
_gaq.push(['_trackPageview']);
_gaq.push processing "_trackPageview" for args: "[]": ga_debug.js:18
Track Pageview ga_debug.js:18
Tracking beacon sent!
在设置和发送变量之前我也尝试过这个:
_gaq.push(['_setDomainName', 'none']);
_gaq.push processing "_setDomainName" for args: "[none]": ga_debug.js:18
0
但目前我在帐户页面中没有看到任何自定义变量,是否需要时间才能显示?多长时间?
答案 0 :(得分:1)
您应该将一个数组传递给_gaq.push
- 您错过了示例中的[]
_gaq.push(['_setCustomVar', 1, 'city', 'delhi', 3]);