0

我正在尝试使用 Google 跟踪代码管理器设置电子商务跟踪,但是我无法让数据出现在 Google 分析中?

https://support.google.com/tagmanager/answer/6107169?hl=en

通过使用上面链接中提供的示例,这是我的代码:

<html>
    <head>
        <script>
        window.dataLayer = window.dataLayer || [];
        dataLayer.push({
        'transactionId': '1238393768',
        'transactionAffiliation': 'Website Name',
        'transactionTotal': 105.78,
        'transactionTax': 21.156,
        'transactionShipping': 18.00,
        'transactionProducts': [
            {
            'sku': '97',
            'name': 'Test Product 1',
            'category': 'Test Category One, Test Category Two',                
            'price': 13.99,
            'quantity': 24            
            },
            {
            'sku': '97',
            'name': 'Test Product 2',
            'category': 'Test Category One, Test Category Two',                
            'price': 3.99,
            'quantity': 22            
            },
        ]
        });
        </script>  
        <!-- Google Tag Manager -->
        <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
        new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
        j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
        'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
        })(window,document,'script','dataLayer','GTM-CODE');</script>
        <!-- End Google Tag Manager -->
    </head>
    <body>
        <!-- Google Tag Manager (noscript) -->
        <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-CODE"
        height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
    </body>
</html>

谁能告诉我为什么这不起作用以及如何让数据出现在 Google Analytics 中?

我不明白的一件事是它如何/在哪里知道将数据添加到我的分析帐户?在 GTM 或 GA 中我还需要做什么或需要任何配置吗?

谢谢。

4

1 回答 1

0

您不能在标签管理器的脚本之前推送。它应该是变量的初始化。喜欢:

<script>
  dataLayer = [{
    'pageCategory': 'signup',
    'visitorType': 'high-value'
  }];
</script>

编辑:文档https://developers.google.com/tag-manager/devguide

于 2017-10-05T18:48:16.017 回答