Google Analytics(分析)中的_setCampNameKey用法
问题描述:
我正在查看页面上的Google分析的js。它包含以下内容(更改域名,名称等)。这是在主页上。我知道这些用于设置广告系列变量,但是...为什么有人会在主页上执行此操作?也许是因为他们有多个网站,并且将每个网站的点击次数作为广告系列进行跟踪?这是一个好的配置吗?Google Analytics(分析)中的_setCampNameKey用法
_gaq.push(['_setDomainName', 'somesite.co.uk']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_setCampNameKey', 'John Doe']);
_gaq.push(['_setCampSourceKey', 'any']);
_gaq.push(['_setCampMediumKey', 'any']);
_gaq.push(['_setCampTermKey', 'plumbs']);
_gaq.push(['_setCampContentKey', 'all']);
_gaq.push(['_trackPageview']);
的例子啊,谢谢!因此,从文档如果传入的链接有一个参数描述='xxx',那么setCampContentKey将说明将描述字段中的任何内容映射到标准utm_content字段......但是这对上述示例有意义吗?不会_gaq.push(['_ setCampContentKey','all']);指示应该映射到utm_content的参数all ='something'? – dajl