5

我正在尝试在Isotope下获取包含大量内容的主页

将每个哈希更改显示为 Google Analytics 中的综合浏览量。最初,我打算将其作为事件进行,但实际上应该是综合浏览量。

所以我设置了修改后的 GA:

(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','//www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-XXXXXXXX-X', {'allowAnchor': true});
ga('send', 'pageview', { 'page': location.pathname + location.search + location.hash});

在 Google Analytics 中,如果有人访问特定 URL,我现在会看到哈希标记 — 例如:http ://www.example.com/#pet-health 如果他们重新加载页面,我会在 GA 中看到该哈希,但如果他们点击一个同位素“导航”链接来访问它。如果他们点击,我只会看到“/”

在同位素射击中,我所拥有的似乎不起作用:

//Sets up filtering on click of Isotope navigational elements 
    $('#isotopeFilters a, .subnav a, #isotopeContainer .isotopeNav a, .page-template-page-home-php #logo').click(function(){
        var selector = $(this).attr('data-filter');
        var prettyselector = selector.substr(1);
        ga('send', 'pageview', location.pathname+location.search+location.hash);

        location.hash = prettyselector;

        $('#isotopeFilters a, .subnav a').removeClass('active');
        $('a[class="' + prettyselector + '"]').addClass('active');

        $container.isotope({ 
            filter: selector,
            itemSelector: '.item',
            masonry: {
                columnWidth: 270
            },
            animationOptions: {
            duration: 750,
            easing: 'linear',
            queue: false,
        }
      });
      return false;
    });

我认为 click 函数中的这一行可以解决问题:

ga('send', 'pageview', location.pathname+location.search+location.hash);

我的语法不正确还是遗漏了什么?

//Fires Isotope functionality when hash/URL changes
    $(window).hashchange( function(){
        if(location.hash!=''){
            var hashfilter = '.' + location.hash.substr(1);
        }else{
            var hashfilter = '.home';
        }

        $container.isotope({
            filter: hashfilter,
            itemSelector: '.item',
            masonry: {
                columnWidth: 270
            },
            animationOptions: {
                duration: 750,
                easing: 'linear',
                queue: false,
           }
        });
        isotopeSubNav();
    });

    if(location.hash!=''){
        var hashfilter = '.' + location.hash.substr(1);
        ga('send', 'pageview', location.pathname+location.search+location.hash);
        $(hashfilter).addClass('active');
    }

那使用相同的语法,所以我假设如果我修复一个,将语法复制到 hashchange 函数也会得到该记录。

4

4 回答 4

10

要更改发送到 GA 的页面路径,您只需对代码稍作修改:

ga('send', 'pageview', {'page': location.pathname+location.search+location.hash});

更多信息可以在这里找到:https ://developers.google.com/analytics/devguides/collection/analyticsjs/advanced?hl=en#fieldObject

于 2015-09-03T15:14:45.407 回答
7

Google 不建议page在发送呼叫中发送:pageview

虽然从技术上讲,页面浏览命中的发送命令接受可选的页面字段作为第三个参数,但在跟踪单页应用程序时不建议以这种方式传递页面字段。这是因为通过 send 命令传递的字段未在跟踪器上设置——它们仅适用于当前命中。如果您的应用程序发送任何非综合浏览点击(例如事件或社交互动),不更新跟踪器将导致问题,因为这些点击将与跟踪器在创建时所具有的任何页面值相关联。

利用:

ga('set', 'page', location.pathname+location.search+location.hash);
ga('send', 'pageview');

关于跟踪单页应用程序的 Google Analytics(分析)指南。

于 2016-08-04T18:49:29.983 回答
3

这是一个完整的代码示例,用于跟踪哈希网页浏览量和谷歌分析中的变化:

(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-XXXXXXXX-X', 'auto');
    ga('set', 'page', location.pathname+location.search+location.hash);
    ga('send', 'pageview');
    window.addEventListener("hashchange", function (event) {
        ga('set', 'page', location.pathname + location.search + location.hash);
        ga('send', 'pageview');
    })
于 2018-05-24T12:27:42.130 回答
2

目前谷歌分析配置加载谷歌标签管理器脚本并使用gtag函数而不是ga所以对我来说,以前的解决方案会抛出错误,因为'ga is not defined'。我所做的是修改初始谷歌分析配置脚本:

<script async src="https://www.googletagmanager.com/gtag/js?id=YOUR-GA-ID"></script>
<script>
     window.dataLayer = window.dataLayer || [];
     function gtag() {
         dataLayer.push(arguments);
     }
     gtag('js', new Date());
     gtag('config', 'YOUR-GA-ID', {
         'page_path': location.pathname + location.hash
     });
 </script>

要在页面未重新加载或 URL(和/或内容)更改而不重新加载 javascript 时发送内容更改,您必须在脚本的某处包含此代码:

window.addEventListener("hashchange", function (event) {
       gtag('event', 'pageview', {
         'page_path': location.pathname+location.search+location.hash
       });
});

你可以看看https://developers.google.com/analytics/devguides/collection/gtagjs/sending-data

https://developers.google.com/gtagjs/reference/event

于 2019-01-23T12:37:40.643 回答