使用Angular 5 +
我尝试使用npm install @ types / google.analytics等安装Google Analytics的类型,但这不起作用。我得到了同样的错误,我也尝试添加
// Declaration of Google Analytics
declare let ga: any;
但是,我仍然收到错误 ReferenceError:ga未定义
我的主要成分
ngAfterViewInit(): void {
this.router.events.subscribe(event => {
if (event instanceof NavigationEnd) {
ga('set', 'page', event.urlAfterRedirects);
ga('send', 'pageview');
}
});
}