尝试在使用 Barba JS 的站点中使用最新的谷歌分析跟踪代码,但它不会跟踪第一页,即用户的路径,有什么想法吗?
问问题
306 次
2 回答
0
使用 google annalitics 提供的完整代码 https://developers.google.com/analytics/devguides/collection/analyticsjs/?hl=en
在你的 JS 添加
(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','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-XXXXX-Y', 'auto');
ga('send', 'pageview');
于 2019-08-30T03:21:26.150 回答
0
它仅在初始页面上运行的原因是使用 gtag.js 实现的默认 GA 代码段仅在加载后运行一次。由于您在 SPA 设置中使用它,因此您需要在路由时手动重新发送页面数据。查看 barbajs 文档,我认为它会是这样的:
// define a global hook, using afterEnter, but you can adjust to enter, beforeEnter, etc as you see fit.
barba.hooks.afterEnter((data) => {
// this hook will be called for each transitions
//data.current.url is the page path.
gtag('config', 'UA-#######-1', {'page_path': data.current.url});
});
于 2019-06-07T14:40:13.900 回答