如何将Google Analytics事件标签添加到Angulartics2?

时间:2016-06-19 16:47:43

标签: google-analytics angular angulartics

Angulartics2中,如何将事件标签传递给Google Analytics?

目前我有这段代码:

<a type="button" [routerLink]="['SecondPage']" angulartics2On="click" angularticsCategory="Click" angularticsEvent="Homepage">Click me</a>

使用Google Analytics调试程序时,它会显示正在触发的事件,该事件会传递类别和操作。查看GitHub中的代码使得它看起来可以提供标签,但我不清楚需要添加到锚标签的属性是什么? angularticsLabel似乎没有任何效果。

3 个答案:

答案 0 :(得分:2)

尝试使用angularticsProperties参数

angularticsProperties="{label: 'some label'}"

比照https://github.com/angulartics/angulartics2/issues/22

答案 1 :(得分:2)

另一个答案提供了正确的方法,但由于necessary to wrap the Object literal in parenthesis,它也是eval in the code

angularticsProperties="({label: 'some label'})"

答案 2 :(得分:0)

现在的新版本(1.1.9)是:

[angularticsProperties]="{label: 'YourLabel'}"

我刚刚通过PR here更新了自述文件。