2016-12-21 48 views
1

你好我是angularJs的新手,我想在我的角應用中實現谷歌分析腳本,它有超過20頁,我正在使用路由。 如果有人可以幫助我,我會非常樂意。 如果你可以舉一個例子在哪裏添加腳本以及如何。 在此先感謝。如何在角度js應用程序中添加谷歌分析腳本?

+0

只需將GA跟蹤代碼粘貼到您網站的常用標題模板中即可。 – dikesh

+0

感謝您的回覆,但只有粘貼在angularjs中不起作用 –

回答

1

在這裏,我提供給我的回答:所有的 首先你添加谷歌分析代碼,您的index.html 腳本標籤內

<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-xxxxxxxx-x', 'auto'); 
      ga('send', 'pageview'); 
</script> 

然後在app.js文件中創建一個功能

$rootScope.$on('$locationChangeStart', function() { 
      ga('set', 'page', $location.path()); 
      ga('send', 'pageview'); 
}); 

你很好走。

相關問題