在我使用 Devise gem 的 Rails 应用程序中,它重定向回具有以下代码的根目录:
<script>
(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', 'UA-40000000-1', 'foo.com');
ga('send', 'pageview');
_gaq.push(['_trackPageview', '/home/articles/user_sign_up']);
</script>
在 Google Analytics 中,我Destination
设置为:
Equals to /home/articles/user_sign_up
但是,它没有注册为转换。有人可以帮我弄清楚我做错了什么吗?
代码出现的页面的 URL 是/home/articles
我的意图是尝试覆盖谷歌认为 URL 正在使用的内容:
_gaq.push(['_trackPageview', '/home/articles/user_sign_up']);