Google Analytics(分析)的事件类别中的“ [object Object]”

时间:2019-04-02 23:46:09

标签: google-analytics

在网页上安装google analytics js后,我得到 分析仪表板中的“ [对象对象]”,与以下人员相同:https://wordpress.org/support/topic/object-object-in-event-category-of-google-analytics/

这是什么意思,我该如何避免?从每30分钟的发生次数来看,它看起来像是“失控”

我有很多这样的东西:

ga('send', 'event', { eventAction: 'clickStartVideoChat', eventCategory: 'VideoChat'} )

<!-- Google Analytics -->
<script>
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
  ga('create', 'UA-XXXX-YYYY', 'auto');
ga('send', 'pageview');
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
<!-- End Google Analytics -->

2 个答案:

答案 0 :(得分:0)

需要传递fieldsObject参数中的所有字段:

ga('send', {
  hitType: 'event',
  eventCategory: 'VideoChat',
  eventAction: 'clickStartVideoChat'
});

答案 1 :(得分:0)

注意,现在更改它不会更改GA中当前的数据。只会解决捕获到的新事件的问题。

您有两个选择:https://developers.google.com/analytics/devguides/collection/analyticsjs/events

ga('send', {
  hitType: 'event',
  eventAction: 'clickStartVideoChat', 
  eventCategory: 'VideoChat'
});

OR

ga('send', 'event', 'VideoChat', 'clickStartVideoChat');