在网页上安装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 -->
答案 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');