我无法让Google Analytics发送商业数据

时间:2016-07-22 21:16:48

标签: google-analytics google-analytics-api

我重写了这篇文章,以便更清楚并简化我遇到的问题。

我正在尝试将电子商务数据发送到Google Analytics。我正在使用最基本的设置来根据他们的示例设置发送一个测试事务。

Google代码管理器正在显示该交易,但它没有进入Google Analytics信息中心转化次数>电子商务>概述

我在管理面板中启用了电子商务,但没有数据?这可能很简单 - 但我无法找到它。 (示例GA ID,在我的代码中使用正确的ID,页面在仪表板中跟踪正常,只是没有电子商务数据)

这是我的代码:

<script type="text/javascript">

(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-1234567-1', 'auto');
ga('send', 'pageview');

ga('require', 'ecommerce');

console.log('order placed');

ga('ecommerce:addTransaction', {
      'id': '1234',                     // Transaction ID. Required.
      'affiliation': 'Acme Clothing',   // Affiliation or store name.
      'revenue': '11.99',               // Grand Total.
      'shipping': '5',                  // Shipping.
      'tax': '1.29'                     // Tax.
    });


ga('ecommerce:addItem', {
      'id': '1234',                     // Transaction ID. Required.
      'name': 'Fluffy Pink Bunnies',    // Product name. Required.
      'sku': 'DD23444',                 // SKU/code.
      'category': 'Party Toys',         // Category or variation.
      'price': '11.99',                 // Unit price.
      'quantity': '1'                   // Quantity.
    });


ga('ecommerce:send');

ga('ecommerce:clear');

0 个答案:

没有答案