我正在使用以下代码行在 form_for 中选择日期
<%= f.date_select :scheduled, {:prompt => {:day => 'Day', :month => 'Month', :year => 'Year'}}, :class => 'date-field', :include_blank => true %>
日期在使用的形式中是可选的。提交表单时,年月字段默认为 1,当字段留空时,api doc 的说明将发生。
下面是哈希
"todo"=>{"name"=>"date tezt", "scheduled(1i)"=>"1", "scheduled(2i)"=>"1", "scheduled(3i)"=>"1", "scheduled(4i)"=>"", "scheduled(5i)"=>"", "assigned_to_id"=>""}, "commit"=>"Create To-do", "action"=>"create", "controller"=>"todos", "project_id"=>"1", "todolist_id"=>"1"}
你如何覆盖它,以便如果没有输入任何内容,生成的哈希包含 nil,对于年份和月份?