gpt4 book ai didi

javascript - 为什么没有记录我的 Google Analytics 自定义变量?

转载 作者:行者123 更新时间:2023-11-29 09:55:33 25 4
gpt4 key购买 nike

我正在尝试为 Google Analytics(分析)设置 5 个自定义变量,如下所示:

<script>
//<![CDATA[
var _gaq=[["_setAccount","UA-XXXXXXXXX-X"],["_trackPageLoadTime"]];
_gaq.push(['_setCustomVar', 1, 'categories', 'News', 3]);
_gaq.push(['_setCustomVar', 2, 'tags', 'something, another, passbook, iphone, ipod, ios6, insider, egift, more things, some other stuff', 3]);
_gaq.push(['_setCustomVar', 3, 'productcount', 0, 3]);
_gaq.push(['_setCustomVar', 4, 'isvideo', 'false', 3]);
_gaq.push(['_trackPageview']);

(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1;
g.src=("https:"==location.protocol?"//ssl":"//www")+".google-analytics.com/ga.js";
s.parentNode.insertBefore(g,s)}(document,"script"));
//]]>

</script>

我想我已经遵守了所有规则,在调用 trackPageView 之前添加了不超过 5 个自定义变量,但它们仍然没有显示在 Google Analytics 中。

最佳答案

可能性:

  • 自定义变量可能会滞后于 _trackPageview 在 GA 用户界面中的显示。 (来源#1)
  • 如果您使用的是 ga_debug.js,您可以在控制台中看到返回的内容。 (来源 #2)
  • 您正在使用 CustomVar(2) 接近自定义变量长度 128。由于这是测试数据,请确保您的真实数据不会越过。 (来源 #3)
  • Eduardo 是正确的,0 与“0”导致 CustomVar(3) 不触发。 (来源 #2 和测试)
  • _trackPageLoadTime 已弃用(来源 #2+3 和测试)

链接/引用:

  1. Mastering Google Analytics Custom Variables
  2. Google Analytics Debugger
  3. Official Google Analytics Custom Variables Documentation

调试器演示页面中的更新片段:

(从非本地主机或文件://提供服务)

<html><head><title>Demo</title><script>

var _gaq=[["_setAccount","UA-XXXXXXXXX-X"]];
_gaq.push(['_setCustomVar', 1, 'categories', 'News', 3]);
_gaq.push(['_setCustomVar', 2, 'tags', 'something, another, passbook, iphone, ipod, ios6, insider, egift, more things, some other stuff', 3]);
_gaq.push(['_setCustomVar', 3, 'productcount', '0', 3]);
_gaq.push(['_setCustomVar', 4, 'isvideo', 'false', 3]);
_gaq.push(['_trackPageview']);
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1;
g.src=("https:"==location.protocol?"//ssl":"//www")+".google-analytics.com/ga.js";
s.parentNode.insertBefore(g,s)}(document,"script"));

</script></head><body><h1>Open your console</h1></body></html>

关于javascript - 为什么没有记录我的 Google Analytics 自定义变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12500390/

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