Google Analytics 학습 노트

1421 단어
어릿광대는 Google Analytics를 웹 사이트의 데이터 모니터링 플랫폼으로 선택했는데 기본적인 기능은 복잡하지 않다.

페이지 모니터링:


페이지에 이러한 코드를 추가하면 페이지 모니터링을 실현할 수 있다.
(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-85667918-1', 'auto');
ga('send', 'pageview');

이벤트 모니터링:


문서:https://developers.google.com/analytics/devguides/collection/analyticsjs/events
간단한 포장:
gaEventSend = function(category, action)
{
    ga('send', 'event', category, action);
}

gaEventSendAndHref = function(category, action, url)
{
    gaEventSend(category, action);
    location.href = url;
}

페이지 로드 시간

if (window.performance) {
    // Gets the number of milliseconds since page load
    // (and rounds the result since the value must be an integer).
    var timeSincePageLoad = Math.round(performance.now());

    // Sends the timing hit to Google Analytics.
    ga('send', 'timing', 'JS Dependencies', 'load', timeSincePageLoad);
}

좋은 웹페이지 즐겨찾기