我阅读了有关Google电子商务跟踪分析的文档。我只是按照它的说明进行操作,然后将其复制并粘贴到测试页上,然后才能在生活站点上进行操作。我的问题是,即使我遵循其示例,在电子商务跟踪上也看不到任何内容。有人能帮我吗?谢谢。
这是Google Analytic Ecommerce文档:https://developers.google.com/analytics/devguides/collection/analyticsjs/ecommerce
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-87205702-2', 'auto');
ga('send', 'pageview');
ga('require', 'ecommerce');
ga('ecommerce:addTransaction', {
'id': '1234', // Transaction ID. Required.
'affiliation': 'Acme Clothing', // Affiliation or store name.
'revenue': '11.99', // Grand Total.
'shipping': '5', // Shipping.
'tax': '1.29' // Tax.
});
ga('ecommerce:send');
</script>
是的,我同时启用了“启用电子商务”和“增强型电子商务设置”。
最佳答案
您必须在ga('ecommerce:addTransaction'和ga('ecommerce:send')之间发送;
ga('ecommerce:addItem', {
'id': '1234', // Transaction ID. Required.
'name': 'Fluffy Pink Bunnies', // Product name. Required.
'sku': 'DD23444', // SKU/code.
'category': 'Party Toys', // Category or variation.
'price': '11.99', // Unit price.
'quantity': '1' // Quantity.
});
关于javascript - Google Analytics(分析)上的电子商务跟踪未显示任何内容,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40619930/