gpt4 book ai didi

ruby-on-rails - 在没有 turbolinks 的 Rails 中添加谷歌分析

转载 作者:行者123 更新时间:2023-12-03 15:49:58 25 4
gpt4 key购买 nike

出于某些原因,我已从我的应用程序中删除了 turbolinks,现在当我尝试运行 google analytics 时,它无法正常工作。

我使用了 gem 'google-analytics-rails' 和 this customized solution.但他们都没有工作。知道如何在没有 turbolink 的情况下在我的应用程序中添加 google anayltics 吗?

最佳答案

我通常只是像这样将它放在 ApplicationHelper 中

module ApplicationHelper

def ga_script
tracking_id = ""
if Rails.env.production?
javascript_tag("(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', '#{tracking_id}', 'auto');")
end
end

def ga_track
javascript_tag("if(window.ga != undefined){ga('send', 'pageview');}")
end

end

然后在布局文件中:

<head>
<%= ga_script %>
</head>
<body>
...
<%= ga_track %>
</body>

它很简单,无论有没有 Turbolinks 都可以使用。

或者,停止尝试使其复杂化,只需将 GA 脚本粘贴到布局正文部分的底部即可。

关于ruby-on-rails - 在没有 turbolinks 的 Rails 中添加谷歌分析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42503174/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com