如何将 Google Analytics 事件标签添加到 Angulartics2?
How to add Google Analytics event label to Angulartics2?
在 Angulartics2 中,如何将事件标签传递给 Google Analytics?
目前我有这个代码:
<a type="button" [routerLink]="['SecondPage']" angulartics2On="click" angularticsCategory="Click" angularticsEvent="Homepage">Click me</a>
使用 Chrome 的 Analytics 调试器时,它显示正在触发的事件传递了类别和操作。查看 GitHub 中的代码,看起来可以提供标签,但我不清楚锚标记需要添加什么属性? angularticsLabel 似乎没有任何效果。
尝试使用angularticsProperties参数
angularticsProperties="{label: 'some label'}"
另一个答案提供了正确的方法,但也是necessary to wrap the Object literal in parenthesis due to an eval
in the code:
angularticsProperties="({label: 'some label'})"
现在的新版本(1.1.9)是:
[angularticsProperties]="{label: 'YourLabel'}"
我刚刚通过 PR here.
更新了 README 文件
在 Angulartics2 中,如何将事件标签传递给 Google Analytics?
目前我有这个代码:
<a type="button" [routerLink]="['SecondPage']" angulartics2On="click" angularticsCategory="Click" angularticsEvent="Homepage">Click me</a>
使用 Chrome 的 Analytics 调试器时,它显示正在触发的事件传递了类别和操作。查看 GitHub 中的代码,看起来可以提供标签,但我不清楚锚标记需要添加什么属性? angularticsLabel 似乎没有任何效果。
尝试使用angularticsProperties参数
angularticsProperties="{label: 'some label'}"
另一个答案提供了正确的方法,但也是necessary to wrap the Object literal in parenthesis due to an eval
in the code:
angularticsProperties="({label: 'some label'})"
现在的新版本(1.1.9)是:
[angularticsProperties]="{label: 'YourLabel'}"
我刚刚通过 PR here.
更新了 README 文件