我想创建自定义指标“评分”,并在点击事件和评级值上发送。我做错了什么?:
var ratingValue = '5';
ga('send', 'event', 'button', 'click', 'rating', {
'nonInteraction': 1,
'page': window.location.href,
'rating': ratingValue
});
参考文档: https://developers.google.com/analytics/devguides/collection/analyticsjs/events
答案 0 :(得分:3)
你需要做两件事:
在您的活动中,指定要发送到的指标而不是指标的名称:
var ratingValue = '5';
ga('send', 'event', 'button', 'click', 'rating', {
'nonInteraction': 1,
'page': window.location.href,
'metric1': ratingValue
});