因此,致力于实施增强型电子商务并尝试使用“测量产品展示”部分。找不到任何好的真实示例,因此不确定这是否是最佳方法。
下面的示例显示我使用数据集填充产品信息,但不确定如何使用javascript ...
//looped, so more than 1 item
<div data-product="{"id" , 123 ,"name" : "Cool bike" , "category" : "bike" , "brand" : "supercoolbikes" // and more...}">
// some content
</div>
<script>
dataLayer.push({
'ecommerce': {
'impressions': [
{
'name': 'Triblend Android T-Shirt',
'id': '12345',
'price': '15.25',
'brand': 'Google',
'category': 'Apparel',
'variant': 'Gray',
'list': 'Search Results',
'position': 1
},
$('[data-product]').each(function(){
//loop all items here
});
]
}
});
</script>