gpt4 book ai didi

ruby-on-rails - 根据环境使用 Rails 进行条件渲染

转载 作者:行者123 更新时间:2023-12-03 23:14:52 24 4
gpt4 key购买 nike

是否有任何适当的方法来检测应用程序布局中的环境(开发或生产)?比如说,我不想在我的本地沙箱中呈现 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 %>

关于ruby-on-rails - 根据环境使用 Rails 进行条件渲染,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9079175/

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