我有一个变量@the_date
和一个没有关联模型的日期选择表单助手。
如何使用date_select
来显示适当的HTML?
以下操作不起作用:
<%= date_select "the_date", @the_date %>
最佳答案
你可以:
<% @the_date = Time.now %>
<%= date_select("my_date", "my_date", :default => @the_date) %>
关于html - 如何在没有模型的Rails中使用date_select表单助手?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7522799/