发送增强型电子商务数据

时间:2016-02-29 13:29:11

标签: google-analytics enhanced-ecommerce

当我登陆确认页面时,我会运行以下代码。

var purchaseObject = {
  'id': $OrderID,
  'revenue': $total,
  'shipping': $deliverycost
};
if (couponCode.length) {
  purchaseObject['coupon'] = couponCode;
}
ga('ec:setAction', 'purchase', purchaseObject);
ga('ec:send');

两个发送都会生成错误消息。

  

插件" ec"没有方法"发送"。

  

调用插件方法时出错:{0:" ec:send"}

我添加了

ga('require', 'ec');

在头部和其他事件工作,所以我不明白为什么发送不起作用。

2 个答案:

答案 0 :(得分:3)

EEC没有发送方法,您可以使用电子商务数据设置操作,并将其与下一个网页浏览(或其他交互)一起发送。请参阅example from the Google documentation:

// Transaction level information is provided via an actionFieldObject.
ga('ec:setAction', 'purchase', {
  'id': 'T12345',
  'affiliation': 'Google Store - Online',
  'revenue': '37.39',
  'tax': '2.85',
  'shipping': '5.34',
  'coupon': 'SUMMER2013'    // User added a coupon at checkout.
});

ga('send', 'pageview');     // Send transaction data with initial pageview.

注意最后一条评论 - 与网页浏览一起发送交易。如果您不想要其他综合浏览量,请使用活动。

答案 1 :(得分:0)

您可以通过事件发送它:

ga('ec:setAction', 'purchase', {          // Transaction details are provided in an actionFieldObject.
  'id': 'T12345',                         // (Required) Transaction id (string).
  'affiliation': 'Google Store - Online', // Affiliation (string).
  'revenue': '37.39',                     // Revenue (currency).
  'tax': '2.85',                          // Tax (currency).
  'shipping': '5.34',                     // Shipping (currency).
  'coupon': 'SUMMER2013'                  // Transaction coupon (string).
});
ga('send','event','Ecommerce','Purchase','revenue', {nonInteraction: true});