Tracking Google Analytics Page Views in Angular2

前端 未结 6 1775
一个人的身影
一个人的身影 2020-12-04 11:16

I have built a new site using Angular 2 as the front-end. As everything is done via push state, there are no page loads which typically trigger the Google Analytics code to

6条回答
  •  醉梦人生
    2020-12-04 12:06

    this.router.events.subscribe(event => {
        if (event instanceof NavigationEnd) {
            ga('set','page', event.urlAfterRedirects);
            ga('send', 'pageview');
        }
    });
    

提交回复
热议问题