想知道使用多个自定义维度来使用“gtag”代码的正确语法是什么。这就是我所拥有的,我只能看到维度 1 工作。
gtag('config', 'UA-xxxxx', {
'custom_map': {'dimension1': 'year', 'dimension2': 'id', 'dimension3': 'presentation_title'}
});
// Sends the custom dimension to Google Analytics.
gtag('event', 'Video', {
'event_category': 'Play',
'event_label': 'url',
'year': 'year',
'id': 'video-id',
'presentation_title': 'blah blah'
});
如何让维度 1 -3 正常工作并显示在我的 Google Analyticis 中?谢谢!