概括 :
根据官方文档,我在我的 Angular 应用程序中实现了Angulartics和angulartics-google-analytics Vendor Plugin 。angulartics
实时page views
跟踪正确,Declarative event tracking
但未得到跟踪。
声明式事件跟踪:
<a href="file.pdf" analytics-on="click" analytics-event="Download" analytics-category="PDF" analytics-label="fileName">Download</a>
index.html 中的脚本和跟踪代码:
<!-- GA scripts -->
<script type="text/javascript" src="node_modules/angulartics/dist/angulartics.min.js"></script>
<script type="text/javascript" src="bower_components/angulartics-google-analytics/dist/angulartics-ga.min.js"></script>
<!-- end -->
<!-- Google Analytics Tracking Code -->
<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', 'XX-XXXXXXXX-X', 'auto');
// ga('send', 'pageview');
</script>
<!-- end -->
同意:
Google Analytic Reports 中的数据最多可能需要 48 小时才能处理,但我一直在等待过去 2 天的事件数据,但仍然没有任何反应。
SO上有很多帖子都有同样的问题,但没有得到任何解决方案。
更新 :
我在我的帐户中收到与 相关的通知Missing Tracking Code
。
因为我现在正在工作。所以http://localhost
,这个通知是有效的。但问题是real time page views
成功记录并且declarative events
没有被跟踪。