添加脚本依赖#
注意替换 data-website-id
属性的值。
<script defer src="https://cloud.umami.is/script.js" data-website-id="271e7807-0306-465f-ab96-5efde03a3ccc"></script>
本地禁止产生记录#
在本地环境、测试环境禁止产生记录。
document.addEventListener('DOMContentLoaded', () => {
// Prevent tracking yourself To prevent tracking yourself,
// add the key umami.disabled to your browser's local storage. Set the value to 1.
localStorage.setItem('umami.disabled', 1);
});
为 Session 添加属性#
添加后就相当于可以追踪到指定用户的访问记录,不添加就是匿名记录。
document.addEventListener('DOMContentLoaded', () => {
umami.identify({ mobile: '18888888888', email: 'myesn@foxmail.com' });
});
自定义事件#
在按钮或者超链接上添加 data-umami-event
。
<p><a data-umami-event="jump-to-url" data-umami-event-url="https://baidu.com" href="https://baidu.com">百度</a>
<p><a data-umami-event="jump-to-url" data-umami-event-url="https://google.com" href="https://google.com">Gootgle</a></p>