キャンペーン情報を記録するために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>