尝试在使用Barba JS的网站中使用最新的Google Analytics(分析)跟踪代码,但不会跟踪经过第一页(即用户的路径)的任何想法吗?
答案 0 :(得分: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});
});
答案 1 :(得分:0)
使用Google analitics提供的完整代码 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');