3

キャンペーン情報を記録するためにGoogleAnalyticsでsetAllowAnchorフラグを取得しようとしていますが、機能していないようです。

私がそれを使おうとしているサイトは、ハッシュバンスタイルのURLを使用しています。これhttp://hostname/#!/relative-urlは、ページビュー全体に永続的なオーディオプレーヤーが必要なため、ナビゲーションのスタイルです。

以下の両方を試しましたがsetAllowAnchor、GAでキャンペーンが表示されません。

/#!/&utm_campaign=setAllowAnchor&utm_medium=hash&utm_source=test
/#utm_campaign=setAllowAnchor&utm_medium=hash&utm_source=test

関数setAllowAnchorは非推奨ではありません。私は何が間違っているのですか?

私のGoogleAnalyticsコードは次のようになります。

<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1060190-1']);
_gaq.push(['_trackPageview']);
_gaq.push(['_trackPageLoadTime']);
_gaq.push(['_setAllowAnchor', true]);
(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);
})();
</script>
4

1 に答える 1

9

Google アナリティクスの設定は、_trackPageviewまたはその他の_track*関数よりも前に行う必要があります。したがって、コードを書き直して の_setAllowAnchor前にを発行すると、_trackPageview動作するはずです。

_trackPageLoadTimeまた、もう必要ないことにも注意してください。これはデフォルトで発行されるため、この関数は非推奨です。

<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1060190-1']);
_gaq.push(['_setAllowAnchor', true]);
_gaq.push(['_trackPageview']);
(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);
})();
</script>
于 2012-06-18T16:37:56.713 に答える