Google 分析中的事件值不准确

Inaccurate Event Value in Google Analytics

我在 Google Analytics 中遇到事件问题。 Event Action 显示大量不准确(负)值。

截图:

Event Action(Play Done)的事件跟踪代码:

ga('send', 'event', { eventCategory: 'Mziiki Song Streaming', eventAction: 'Play Done', eventLabel: song_title, eventValue: total_sec});

这里,song_title & total_sec 是动态值。

我们将不胜感激任何帮助。谢谢。

当事件值作为字符串而不是数字传递时,我已经看到过这种情况。尝试将值包装在显式 parseInt():

ga('send', 'event', { eventCategory: 'Mziiki Song Streaming', eventAction: 'Play Done', eventLabel: song_title, eventValue: parseInt(total_sec)});