gpt4 book ai didi

google-analytics - 使用gtag代码的Google Analytics(分析)目标事件不起作用

转载 作者:行者123 更新时间:2023-12-03 17:23:51 25 4
gpt4 key购买 nike

我尝试了gtag和ga代码的许多不同排列,但似乎无法在Google Analytics(分析)上获得肯定的转化。

此代码在表单提交上运行,第一行中的Google广告转化在该平台上获得了积极的转化。 Google Analytics(分析)没有显示出目标。

我没有使用Google跟踪代码管理器,而是包含以下全局标记。

<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'XXXXXXXX');
</script>


如您所见,我标记为尝试的行如下:

// This Google Ad Conversion works properly
gtag('event', 'conversion', {'send_to': 'XXXXXXXX'});

// Attempt 1
gtag('event', 'Submit', { 'event_category': 'Form', 'event_label': 'Outdoor Kitchens Landing Oct 2019', 'value': 1 });

// Attempt 2
ga('send', 'event', 'Form', 'Submit', 'Outdoor Kitchens Landing Oct 2019', 1);

// Attempt 3
ga('send', {
hitType: 'event',
eventCategory: 'Form',
eventAction: 'Submit',
eventLabel: 'Outdoor Kitchens Landing Oct 2019',
eventValue: 1
});


为了使ga代码正常工作,我必须在HEAD中包含以下代码段。

<script>
window['GoogleAnalyticsObject'] = 'ga';
window['ga'] = window['ga'] || function() {
(window['ga'].q = window['ga'].q || []).push(arguments)
};
</script>


Google Analytics(分析)中目标的设置如下(截断的标签为“ Outdoor Kitchens Landing October 2019”

enter image description here

最佳答案

考虑添加gtag('config', 'UA-XXXXX-Y')调用以启动分析跟踪,并遵循有关分析事件跟踪的官方文档:https://developers.google.com/analytics/devguides/collection/gtagjs/events
根据您在网站上看到的信息,永远不会启动Analytics(分析)跟踪器对象,因此不会将任何数据发送到Analytics(分析)。
您需要为正在使用的每项服务gtag('config', ... )调用,例如一项用于广告转换,另一项用于Analytics(分析):https://developers.google.com/gtagjs/devguide/configure
同样,您的MonsterInsights代码可能会影响跟踪,因此请检查其是否按预期工作。
enter image description here

关于google-analytics - 使用gtag代码的Google Analytics(分析)目标事件不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58634688/

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