如何禁止代码在 Rails 开发环境中运行?
当我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这适用于 Rails 3。在旧版本中,使用环境变量 RAILS_ENV。
罗宾
This works for Rails 3. In older versions, user the environment variable RAILS_ENV.
Robin