我花了很多时间研究在本地运行的文件上使用GA的方法,但没有使用http://localhost:(some_port)
。
我使用的每个方法都不会返回任何常规数据。这是我最接近的东西:
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-47519364-1']);
_gaq.push(['_setDomainName', 'none']);
_gaq.push(['_setAllowLinker', '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/u/ga_debug.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
之前有人以这种方式工作吗?
答案 0 :(得分:10)
感谢您通过选择&#39; _debug.js&#39;来启发我的眼睛。脚本。 我正在使用分析模块并遇到同样的问题。 所以我使用了调试脚本,并在尝试发送事件时遇到以下错误:
Unallowed document protocol. Aborting hit.
我用谷歌搜索它并发现这个线程如何绕过它: https://productforums.google.com/forum/#!topic/analytics/KNz8TimivXo
这就是答案:
ga('create', 'UA-**********-6', {'cookieDomain': 'none'});
ga('set', 'checkProtocolTask', function(){ /* nothing */ });
ga('send', 'pageview');