Google 分析中的附属代码

Affiliate Code In Google Analytics

有了增强的电子商务报告,现在有一个部分报告 'affiliate code.' 但是我找不到该数据是如何填充的。是否需要使用特定属性将某些内容推送到数据层?谢谢!

您可能正在寻找交易的隶属关系属性。您可以在此处的文档中找到它的引用:https://developers.google.com/analytics/devguides/collection/analyticsjs/enhanced-ecommerce#action-data

关于将其推入数据层(我假设您使用的是 Google 跟踪代码管理器),您应该将其作为键值对添加到 ecommerce.purchase 对象的 actionField 中你推入数据层。

这是 Google Docs provide 的示例代码,显示了从属关系 属性 的使用:

<script>
// Send transaction data with a pageview if available
// when the page loads. Otherwise, use an event when the transaction
// data becomes available.
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
       }]
    }
  }
});
</script>