4

Google の古いアナリティクスからユニバーサル アナリティクスに移行しようとしています。以下のコードとユニバーサルからのコードがあります-開発者ガイド解決策が見つかりませんでした。

分析コード内には、次の行がありました。パート1:

 var _gaq = _gaq || [];
    _gaq.push(['_setAccount', 'UA-123456-1']);

     _gaq.push(['_trackPageview','/tools/one');
     _gaq.push(['_setCustomVar', 1, 'name', 'michael', 1]);

(function() {
       var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    })();

また、他のスクリプトの中に、このコード スニペットがあります。パート2:

if (typeof _gaq !== "undefined" && _gaq !== null) {
    _gaq.push(['_trackPageview', '/dosomework']);
}

「gaq.push」を 2 つの部分に変換してユニバーサル アナリティクス コードに追加するにはどうすればよいですか?

4

1 に答える 1