是否有适当的方式来检测应用程序布局中的环境(开发或生产)?说,我不想在我的本地沙箱中渲染GA代码.
在Django中,我们使用{%if not debug%} {%include’_ga.html’%} {%endif%}.我应该在Rails中使用什么?谢谢.
解决方法
您可以使用:
Rails.env.production? #or Rails.env.development? #or Rails.env.test?
详见docs.所以,你可以做一些类似的事情:
<% if Rails.env.development? %> <p>Dev Mode</p> <% else %> <p>Production or test mode</p> <% end %>