0

例如,以下标记是否...

dataLayer = [
    {
        'transactionId': 'placeholder-id',
        'transactionAffiliation': 'placeholder-affiliation',
        'transactionTotal': 'placeholder-total',

使用 analytics.js 或 Google 跟踪代码管理器配置?任何提供有关升级到 Universal Analytics 新数据层的必要性信息的资源都将非常有用。

谢谢。

4

2 回答 2

0

不,它们完全不同。尝试搜索一下,您会发现很多待办事项,例如: https://developers.google.com/tag-manager/enhanced-ecommerce http://merch.docs.magento.com/ee/user_guide/content/市场营销/google-universal-analytics-enhanced-ecommerce.html

来自谷歌开发者的例子

dataLayer.push({
  'ecommerce': {
    'purchase': {
      'actionField': {
        'id': 'T12345',                         // Transaction ID. Required for purchases and refunds.
        'affiliation': 'Online Store',
        'revenue': '35.43',                     // Total transaction value (incl. tax and shipping)
        'tax':'4.90',
        'shipping': '5.99',
        'coupon': 'SUMMER_SALE'
      },
      'products': [{                            // List of productFieldObjects.
        'name': 'Triblend Android T-Shirt',     // Name or ID is required.
        'id': '12345',
        'price': '15.25',
        'brand': 'Google',
        'category': 'Apparel',
        'variant': 'Gray',
        'quantity': 1,
        'coupon': ''                            // Optional fields may be omitted or set to empty string.
       },
       {
        'name': 'Donut Friday Scented T-Shirt',
        'id': '67890',
        'price': '33.75',
        'brand': 'Google',
        'category': 'Apparel',
        'variant': 'Black',
        'quantity': 1
       }]
    }
  }
});
于 2015-06-16T12:32:00.880 回答
0

您指定的数据层虽然不完整,但确实适用于具有 Universal Analytics 的标准电子商务的 Google Tag Manager 实施,但不适用于增强型电子商务。您可以参考此资源了解更多信息: https: //support.google.com/tagmanager/answer/3002596

请注意,数据层不是 UA 的功能,而是内置于 Google 跟踪代码管理器中。因此,使用 DL 进行分析跟踪不需要 UA 实现。

于 2015-06-16T13:31:48.580 回答