作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我是angularJs的新手,我想在我的angular应用程序中实现Google Analytics(分析)脚本,该应用程序有20多个页面,并且我正在使用路由。
如果有人可以帮助我,我将非常感激。
如果可以举个例子,在哪里添加脚本以及如何添加。
提前致谢。
最佳答案
在这里,我提供我的问题的答案:
首先,将您的Google Analytics(分析)代码添加到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>
$rootScope.$on('$locationChangeStart', function() {
ga('set', 'page', $location.path());
ga('send', 'pageview');
});
关于angularjs - 如何在angular js应用中添加Google Analytics脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41272178/
我是一名优秀的程序员,十分优秀!