gpt4 book ai didi

ruby-on-rails - 如果参数为空,则 Text_field_tag 默认值?

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

如果 params[:date] 的参数为空,我希望我的 text_field_tag 将当前日期作为默认值,这是我目前的代码:

<%= text_field_tag :end, params[:end]  %>

我想要类似:<%= text_field_tag :end, if params[:end] then use this value else show current date %>

谢谢

最佳答案

您可以简单地使用“或”运算符。如果 params[:end] 为空,它将使用 Time.now。

<%= text_field_tag :end, (params[:end] or Time.now)  %>

关于ruby-on-rails - 如果参数为空,则 Text_field_tag 默认值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3552081/

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