我是谷歌分析的新手。我正在尝试将Google分析应用到我的角度2项目中。我已经实现了如下:
app.component.ts
import {Injectable} from "@angular/core";
declare var ga:Function;
@Injectable()
export class GoogleAnalyticsEventsService {
public emitEvent(eventCategory: string,
eventAction: string,
eventLabel: string = null,
eventValue: number = null) {
ga('send', 'event', {
eventCategory: eventCategory,
eventLabel: eventLabel,
eventAction: eventAction,
eventValue: eventValue
});
}
}
和google-analytics-events.service.ts
<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-XXXXXXXXX-X', 'auto');
ga('send', 'pageview');
</script>
的index.html
Sunday
任何人都可以在此建议我吗?
答案 0 :(得分:0)
只需在Google Analytics中创建一个新属性,然后将UA-ID复制到ga('create', 'UA-XXXXXXXXX-X', 'auto');
的index.html代码段中。
Here你可以阅读一篇关于Angular和Google Analytics的好文章。与作者相同,我强烈建议您使用Google跟踪代码管理器。但当然,如果不像你那样做也是可能的。