我无法将自定义维度数据发送到Google Analytics(分析)。 我按照this google instructions的要求进行了调整,但是没有用。我在Google Analytics(分析)中添加了维度,但似乎没有关于这些自定义维度的数据。
This是发生这种情况的网站示例页面
在这里您可以找到我在该页面上使用的代码
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
var author = 'Walter Manni';
var year = '2019';
var prov = '';
var dest = '';
gtag('js', new Date());
// Configures custom dimension<Index> to use the custom parameter
// 'dimension_name' for 'GA_TRACKING_ID', where <Index> is a number
// representing the index of the custom dimension.
gtag('config', 'xxxxxxxx',{
'anonymize_ip': true,
'custom_map': {
'dimension1': 'author',
'dimension2': 'year',
'dimension3': 'provincia',
'dimension4': 'destinazione',
}
}
);
gtag('event', 'author_dimension', {
'author': author
});
gtag('event', 'year_dimension', {
'year': year
});
谢谢您的帮助!