我正在使用 Google Analytics 设置一些自定义变量_setCustomVar
。我看过一些使用语法填充自定义变量值的文档(非官方)。P1:P2:P3
我在 Google Developers 文档中找不到确凿的证据表明 的值P1:P2:P3
将是字符串连接的副本Golf:Player:Scottish
- 是这样吗?
_gaq.push(['_setCustomVar',
3,
‘P1',
‘Golf’,
3
]);
_gaq.push(['_setCustomVar',
4,
‘P2',
‘Player’,
3
]);
_gaq.push(['_setCustomVar',
5,
‘P3',
‘Scottish’,
3
]);
_gaq.push(
['_setAccount', 'UA-123456-1'],
['_setCustomVar', 1, 'Category', 'P1:P2:P3']
);