1
我想將Google Analytics代碼添加到我的AngularJS應用程序中。AngularJS with Google Analytics
我使用Ruby On Rails作爲後端框架。 Rails的AngularJS application.html.erb
文件僅在第一個請求中加載。
因此,我將google分析代碼放入viewcontentLoad
事件中。
$rootScope.$on('$viewContentLoaded', function() {
(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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-XXXX-Y', 'auto');
// ga('send', 'pageview');
ga('send', 'pageview', {'page': $location.path()});
});
我不知道這是否是插入Google Analytics代碼的有效方式。
我只是檢查出來,讓你的幫助know..Thanks。 – Catmandu