1

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

目前我有这个代码:

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

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

4

3 回答 3

2

另一个答案提供了正确的方法,但由于代码中的a ,还需要将 Object 文字包装在括号中:eval

angularticsProperties="({label: 'some label'})"
于 2016-06-22T20:00:59.727 回答
2

尝试使用 angularticsProperties 参数

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

参看。https://github.com/angulartics/angulartics2/issues/22

于 2016-06-20T06:56:23.297 回答
0

现在的新版本(1.1.9)是:

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

我刚刚在这里通过 PR 更新了 README 文件。

于 2016-09-28T23:08:34.837 回答