gpt4 book ai didi

google-analytics - Analytics自定义变量

转载 作者:行者123 更新时间:2023-12-03 16:13:31 25 4
gpt4 key购买 nike

我正在尝试制作自定义报告。
我已经在主页上放置了一些测试代码:

<script type="text/javascript"> 
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-12323748-3']);
_gaq.push(['_trackPageview']);
_gaq.push(['_setCustomVar',
2, // This custom var is set to slot #1
'Test_var', // The name acts as a kind of category for the user activity
'Yes', // This value of the custom variable
2 // Sets the scope to session-level
]);

(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);
})();

</script>


我的自定义报告设置如下所示:
http://updo.nl/file/ed351e11.png

但是,它只是显示为空(我让它收集了2天的数据,然后检查了报告)

任何帮助,将不胜感激

最佳答案

我问了同样的问题。有人告诉我,必须将setCustomVar行放在trackPageView行之上,并在_gaq行之下。像这样:

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-12323748-3']);
_gaq.push(['_setCustomVar', 2, 'Test_var', 'Yes', 2]);
_gaq.push(['_trackPageview']);


_trackPageview将所有信息发送到Google Analytics(分析),因此,信息发送后就无法添加。

关于google-analytics - Analytics自定义变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3943964/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com