如何从Jquery中的Google Analytics中获取总页面浏览量?

时间:2016-03-20 05:40:50

标签: javascript jquery html google-analytics google-analytics-api

我使用以下代码将页面浏览次数发送到Google Analytics(分析),

function gaInit() {
  $.getScript('//www.google-analytics.com/analytics.js'); // jQuery shortcut
  window.ga = window.ga || function () { (ga.q = ga.q || []).push(arguments) }; ga.l = +new Date;
  ga('create', 'UA-<ID>', 'auto');

  console.log("Initalized");
  return ga;
};

function gaTrack(path, title) {
  var track =  { page: path, title: title};

  ga = window.ga || gaInit();

  ga('set', track);
  ga('send', 'pageview');

  console.log("Tracked");
};

$(window).load(function(){
    console.log("Inside ga load function");
    var unique_id = $('#unique_id').text();
    var url     = /view/ + unique_id
    gaTrack(url, "View");
});

我必须在网页中显示总视图,类似于stackoverflow显示帖子视图的方式。如何从ga到api获得总观看次数?

有人可以帮我吗?我对Jquery和ga很新。

0 个答案:

没有答案