gpt4 book ai didi

ruby-on-rails - 如何检查 Rails 中是否定义了变量?

转载 作者:数据小太阳 更新时间:2023-10-29 06:25:36 26 4
gpt4 key购买 nike

<% if dashboard_pane_counter.remainder(3) == 0 %>
do something
<% end>

如果未定义 dasboard_pane_counter,我如何才能将其评估为 false 而不是抛出异常?

最佳答案

<% if defined?(:dashboard_pane_counter) && dashboard_pane_counter.remainder(3) == 0  %>
# do_something here, this assumes that dashboard_pane_counter is defined, but not nil
<% end %>

关于ruby-on-rails - 如何检查 Rails 中是否定义了变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7806133/

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