Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我的 Rails 应用程序处于开发模式时,如何删除代码?例如,我想在开发时删除我的 Google Analytics 引用,但让它在生产环境中呈现。
是否有在视图或控制器中实施的解决方案?我可以看到两者都需要。
<% if Rails.env == 'production' %> ...production code goes here... <% end %>
这适用于 Rails 3。在旧版本中,使用环境变量 RAILS_ENV。
罗宾