作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们正在使用 enhanced eCommerce通过使用数据层进行跟踪,在本地环境中进行设置和测试。我们可以在分析中看到页面浏览量,但不会触发事件和印象。
我尝试使用这个:
dataLayer.push({
'ecommerce': { 'Impression': [ { 'name': '${product.name}' ,'id': '${product.code}' }]}
});
dataLayer.push({
'ecommerce':
{ 'detail':
{ 'products':
[{
'name': '${product.name}',
'id': '${product.code}',
'variant': '${product.style}'
}]
}
}
});
最佳答案
至少对于印象数,您似乎没有使用正确的参数名称(您有“印象数”,但应该是“印象数”)。应按此衡量展示次数,取自本指南 https://developers.google.com/tag-manager/enhanced-ecommerce :
// Product impressions are sent by pushing an impressions object
// containing one or more impressionFieldObjects.
dataLayer.push({
'ecommerce': {
'currencyCode': 'EUR', // Local currency is optional.
'impressions': [
{
'name': 'Triblend Android T-Shirt', // Name or ID is required.
'id': '12345',
'price': '15.25',
'brand': 'Google',
'category': 'Apparel',
'variant': 'Gray',
'list': 'Search Results',
'position': 1
}]
}
});
关于google-analytics - 如何在 Google Analytics(分析)的 Google Tag Manager 中测试和实现数据层,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26734224/
我是一名优秀的程序员,十分优秀!