markdown 使用analytics.js的自定义维度

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 使用analytics.js的自定义维度相关的知识,希望对你有一定的参考价值。

### Set Custom Dimension using `analytics.js`
* Include the analytics tag:
```javascript
		<!-- Google Analytics -->
		<script>
			(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
			(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
			m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
			})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');

			ga('create', 'UA-144782955-1', 'auto');
			ga('send', 'pageview');
		</script>
		<!-- End Google Analytics -->
```
* Replace the `UA` code with the `UA tarcking ID` of your analytics account
* Make sure to have already created the custom dimension in [google analytics](https://support.google.com/tagmanager/answer/6164990?hl=en)
* If you send your data **after** the page load, make sure to use the event way of sending data:
```
ga('set', 'dimension1', 'analytics-set');			
ga('send', 'event', 'category', 'action', {
	'dimension1': 'analytics-set'
});	
```
* Otherwise, the `send` declared in the above script tag will be enough to send the data to GA

以上是关于markdown 使用analytics.js的自定义维度的主要内容,如果未能解决你的问题,请参考以下文章

在 Google Analytics 中使用 Hashtag # 新的 analytics.js 跟踪代码

事件跟踪:如何防止双重加载analytics.js

如何在 analytics.js 中为谷歌分析设置页面速度日志记录

使用新的 analytics.js 语法进行跨域跟踪?

Rails ActionView::Template::Error(google_analytics.js 未预编译)

将 Google Analytics.js 转换为 gtag.js?