我在尝试在angular2中实施谷歌分析时遇到了问题。
根据我发现的信息,例如this post,这似乎很容易。但到目前为止,我没有找到任何示例,不是来自.html
,而是来自.ts
。
我正在尝试使用谷歌分析制作私有方法,然后在构造函数中调用它。这样的事情。
constructor() {
this.initializeAnalytics();
}
private initializeAnalytics() {
(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');
...
...
}
但只是放置谷歌分析代码不起作用(错误:supplied parameters do not match any signature of call target
)。我可能是以错误的方式做到了。
我该如何做到这一点?
答案 0 :(得分:6)
这就是我做到的。
您需要将ga代码放入index.html。
(不要忘记评论以下行://ga('send', 'pageview');)
然后你需要在导入后将ga函数声明到你的app.component.ts文件中:
import { ... } ...;
declare var ga:Function;
@component(...)
然后您可以在app.component.ts中订阅路线更改事件并发送ga数据,如下所示:
this.router.events.subscribe((event:Event) => {
// Send GA tracking on NavigationEnd event. You may wish to add other
// logic here too or change which event to work with
if (event instanceof NavigationEnd) {
// When the route is '/', location.path actually returns ''.
let newRoute = this.location.path() || '/';
// If the route has changed, send the new route to analytics.
if (this.currentRoute != newRoute) {
ga('send', 'pageview', newRoute);
//console.log('would send to ga: ' + newRoute);
this.currentRoute = newRoute;
}
}
});
答案 1 :(得分:2)
您需要将代码转换为Typescript。目前它是Javascript。
的功能function (i, s, o, g, r, a, m)
有7个非可选参数,但是你只在此行提供5个:
(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga')
您需要将其余参数设为可选,如下所示:
function (i, s, o, g, r, a?, m?)
然后您还需要更改不同的行:
}, i[r].l = 1 * new Date();
到
}, i[r].l = 1 * <any>new Date();
最终代码可能如下所示:
(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 * <any>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');