如何禁止代码在 Rails 开发环境中运行?

发布于 2024-10-30 03:36:17 字数 123 浏览 3 评论 0原文

当我的 Rails 应用程序处于开发模式时,如何删除代码?例如,我想在开发时删除我的 Google Analytics 引用,但让它在生产环境中呈现。

是否有可以在视图或控制器中实现的解决方案?我可以看到两者都需要。

How can I remove code when my Rails app is in development mode? For example, I want to remove my Google Analytics reference when in development but have it render in the production environment.

Is there a solution that con be implemented in the views or the controllers? I can see a need for both.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暮年 2024-11-06 03:36:17
<% if Rails.env == 'production' %>
  ...production code goes here...
<% end %>

这适用于 Rails 3。在旧版本中,使用环境变量 RAILS_ENV。

罗宾

<% if Rails.env == 'production' %>
  ...production code goes here...
<% end %>

This works for Rails 3. In older versions, user the environment variable RAILS_ENV.

Robin

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文