gpt4 book ai didi

google-analytics - 未捕获的 ReferenceError : ga is not defined with ga ('require' , 'ec' )

转载 作者:行者123 更新时间:2023-12-03 14:41:10 26 4
gpt4 key购买 nike

我的网站使用 Google Tag Manager 跟踪浏览量,并使用 ga('require', 'ec') 在某些页面中加载增强型电子商务插件,但有一个错误:

Uncaught ReferenceError: ga is not defined



代码片段:
ga('require', 'ec');
function onProductClick(product, url, key) {
ga('ec:addProduct', {
'id': "'" + product.product_id + "'",
'name': product.model_name,
'category': product.series_name + '/' + product.dealer_name,
'brand': product.brand_name,
'variant': product.model_name,
'position': key
});

它有什么问题?

最佳答案

GA 在此脚本运行后加载。

GTM 是异步的,因此不能保证在运行内联脚本之前运行其中包含的标记。

您可以将此脚本添加为 GTM 中的 HTML 标记,并将 Universal Analytics 标记设置为它的要求,或 add some more script到您的页面的头部。

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

(Source)

关于google-analytics - 未捕获的 ReferenceError : ga is not defined with ga ('require' , 'ec' ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42710456/

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