使用 Goggle Analytics 我想使用自定义变量。这是内置功能,但不幸的是我无法控制加载 GA 并调用 _trackPageview 的代码;
这意味着我不能在 _trackPageview 之前调用 _setCustomVar
如果我第二次调用 _trackPageview,它会记录两次页面浏览量吗?
例如
// I'm not able to change this order
_gaq.push(['_setAccount', 'UA-XXXXXXXX']);
_gaq.push(['_trackPageview']);
// I'm forced to run this after the first _trackPageview
_gaq.push(['_setCustomVar',1,'name','value']);
_gaq.push(['_trackPageview']);
有没有其他方法来获取自定义变量集