gtag 多个自定义维度
gtag multiple custom dimensions
我在网上搜索了将多个自定义维度发送到 google 分析的解决方案。
旧标签 ga 很容易像这样配置:
ga('create', 'UA-ID', 'auto');
ga('set', 'dimension1', value1);
ga('set', 'dimension2', value2);
ga('set', 'dimension3', value3);
ga('send', 'pageview');
这将发送所有 3 个自定义维度。
问题出现在新 gtag.js 我尝试了很多方法来配置多个自定义维度。
该文档显示了如何配置 1 个自定义维度:
gtag('config', 'UA-ID', {
'custom_map': {'dimension1': 'value'}
});
gtag('event','eventname', {'valuename':value});
这 [对于 1 个维度] 有效,但我不知道如何发送多个自定义维度。
[tried sending the object with 2 fields of dimension , tried to duplicate the config custom map with different dimensions - it didn't work]
有什么想法吗?
您仍然可以使用旧版代码,但您必须将其发送到 JSON 中,例如
--Option I--
-- Set Option --
gtag( 'set' , {'dimension1' : "yxz"} ); // Set a Single Element
gtag( 'set' , {'dimension2' : "abc",'dimension3' : "123"} ); // Set multiple Elements
gtag('config', 'UA-1-1'); // Pageview with 3 cd
--Option II--
-- Map Function--
gtag('config', 'UA-ID', {
'custom_map': {'dimension1': 'value',
'dimension2': 'value2',
'dimension3': 'value3'}
});
gtag('event','eventname', {'value1':"1",'value2':"2",'value3':"3"});
我在网上搜索了将多个自定义维度发送到 google 分析的解决方案。
旧标签 ga 很容易像这样配置:
ga('create', 'UA-ID', 'auto');
ga('set', 'dimension1', value1);
ga('set', 'dimension2', value2);
ga('set', 'dimension3', value3);
ga('send', 'pageview');
这将发送所有 3 个自定义维度。
问题出现在新 gtag.js 我尝试了很多方法来配置多个自定义维度。 该文档显示了如何配置 1 个自定义维度:
gtag('config', 'UA-ID', {
'custom_map': {'dimension1': 'value'}
});
gtag('event','eventname', {'valuename':value});
这 [对于 1 个维度] 有效,但我不知道如何发送多个自定义维度。
[tried sending the object with 2 fields of dimension , tried to duplicate the config custom map with different dimensions - it didn't work]
有什么想法吗?
您仍然可以使用旧版代码,但您必须将其发送到 JSON 中,例如
--Option I--
-- Set Option --
gtag( 'set' , {'dimension1' : "yxz"} ); // Set a Single Element
gtag( 'set' , {'dimension2' : "abc",'dimension3' : "123"} ); // Set multiple Elements
gtag('config', 'UA-1-1'); // Pageview with 3 cd
--Option II--
-- Map Function--
gtag('config', 'UA-ID', {
'custom_map': {'dimension1': 'value',
'dimension2': 'value2',
'dimension3': 'value3'}
});
gtag('event','eventname', {'value1':"1",'value2':"2",'value3':"3"});