typescript 订阅路由器更改事件,并在每次更改时向Google Analytics发送当前网址的网页浏览事件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 订阅路由器更改事件,并在每次更改时向Google Analytics发送当前网址的网页浏览事件相关的知识,希望对你有一定的参考价值。
import { Injectable } from '@angular/core';
import { NavigationEnd, Router } from '@angular/router';
declare const ga: any;
// see: https://developers.google.com/analytics/devguides/collection/analyticsjs/single-page-applications
@Injectable()
export class AnalyticsService {
constructor(public router: Router) {
router.events.distinctUntilChanged((previous: any, current: any) => {
if (current instanceof NavigationEnd) {
return previous.url === current.url;
}
return true;
}).subscribe((x: any) => {
ga('set', 'page', x.urlAfterRedirects || x.url);
ga('send', 'pageview');
})
}
}
以上是关于typescript 订阅路由器更改事件,并在每次更改时向Google Analytics发送当前网址的网页浏览事件的主要内容,如果未能解决你的问题,请参考以下文章
typescript 使用@output订阅组件事件
typescript 使用输出订阅组件事件
取消订阅 Apple 推送通知服务
Redux Store 仅订阅特定事件? store.subscribe()
如何订阅“日志事件”并在 ThunderCore 上获取通知?
即使取消订阅,订阅者也会触发