我通过ga()函数将事件发送到谷歌分析:
ga('send', {
'hitType': 'event',
'eventCategory': 'Article',
'eventAction': 'Purchase',
'eventLabel': window.location.href.split('?')[0],
'eventValue': r.data.price,
'useBeacon': true,
'hitCallback': function() {
googleSent = true;
}
});
回调获取正确执行,chrome analytics debuger显示事件正在发送给Google Analytics。但是没有任何东西出现 - 无论是在实时报告中还是在常规报告中都没有。
任何可能导致此特定问题的想法?
答案 0 :(得分:4)
谢谢大家,今天我可以弄清楚这种行为背后的真正问题是什么:
eventValue是一个浮点数,但它必须是一个整数,因此它不会依赖于分析服务器。 这就是全部。