我在 Angular 中对点击事件进行编码,如下所示:
onProductClicked() {
(<any>window).ga('send', 'event', {
eventCategory: 'Click',
eventLabel: this.item.provider,
eventAction: 'click-on-product',
eventValue: this.item.price + "~" + this.item.name
});
}
上述事件在我的 Chrome 控制台上触发以下请求:
我的问题是,为什么上述事件没有在我的 Google 分析仪表板的事件仪表板中捕获?
有什么我错过的吗?
