2

ポリマー アプリで Google アナリティクス (ウェブ) を使用しようとしています (この GA SPA docに従って、routing.html のトラッカー オブジェクトを更新しています)。出発点として、Polymer Starter Kit を使用しました。ただし、ページビューは表示されませんが、/アプリの使用状況を追跡するための推奨される方法は何ですか?

ルーティング.html

page('/topstories', function () {
  app.route = 'topstories';
  window.ga('set', 'page', '/topstories');
});

page('/about', function () {
  app.route = 'about';
  window.ga('set', 'page', '/about');
});

index.html

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

    ga('create', 'UA-xxxxxxxxx-1', 'auto');
    ga('send', 'pageview');

</script>
4

2 に答える 2

3

トラッカーでページ値を設定するだけでなく、ページビュー ヒットを Google アナリティクスに送信する必要もあります。ルート コールバック関数では、次の行を追加する必要があります。

ga('send', 'pageview');

これらすべてを実行する関数を作成することもできるので、毎回setandの呼び出しを繰り返す必要はありません。send

function updatePage(path) {
  return function() {
    app.route = path.slice(1);
    ga('set', 'page', path);
    ga('send', 'pageview');
  }
}

ページ ルートの宣言は次のようになります。

page('/topstories', updatePage('/topstories'));
page('/about', updatePage('/about'));
于 2015-08-01T18:58:51.240 に答える