Google Analytics的GA分析声明

时间:2018-04-05 16:40:17

标签: angular google-analytics

使用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');
  }
});

}

0 个答案:

没有答案