0

在我使用 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']);
4

1 回答 1

0

我认为您正在将新analytics.js语法与传统语法混为一谈ga.js。尝试使用

ga('send', 'pageview', '/home/articles/user_sign_up');

请参阅相关文档

于 2013-08-30T09:57:41.277 回答