为什么我的Google Analytics网页时间全部为0.00%?
做这样的事情足以得到页面时间或者我应该做些什么不同吗?
/* GOOGLE ANALYTICS ID */
(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', [myid], 'auto');
其他统计信息正在使用我设置为帐户ID的同一个ga。
答案 0 :(得分:2)
这是因为跳出率。
当访问者访问您的网站时,他或她会获得时间戳。因此,Google Analytics可能会注意到,用户于17:35:03登陆了您的主页。然后,Google Analytics会在该用户访问您网站上的新网页时分配新的时间戳。因此,如果用户在17:36:04点击了您的“关于”页面的链接,那么您的主页上的页面时间为00:01:01。
但是,如果用户永远不会访问您网站上的其他网页(换句话说,如果退回?)会发生什么?
然后,没有第二个时间戳供Google使用。所以他们在00:00:00分配了一个页面时间。
解决方法很少。
答案 1 :(得分:1)
我也在努力解决这个问题。在研究了网页跟踪网站的时间后,似乎可能会出现一些导致时间不被记录的问题:
如果您在PageSpeed Suggestions列中看到帮助,则表示我们无法分析给定网址的页面,您应该稍后再试。如果错误仍然存在,则可能是由于以下任何原因:
-The hostname you have configured in the Website’s URL section of your View Settings is not a valid hostname for your website. -The URLs shown in the Site Speed Suggestions report are not valid URLs for your website. -You are tracking multiple subdomains and not using a single hostname. -You have set up view filters to rewrite your URLs. -The page requires authentication.
最让我感兴趣的是"页面需要身份验证"项目。我想这会阻止我收集这些数据。