我不能在form_for中使用f变量,所以我需要一个form_tag的date_select。您如何将其转换为在form_tag上使用?
的form_for
<%= f.date_select :all_dates, :start_year => 2010, :end_year => 2012, :order => [:month, :day, :year], :use_short_month => true %>
的form_tag
user_price = model
<%= date_select("user_price" , "all_dates", :start_year => 2010, :end_year => 2012, :order => [:month, :day, :year], :use_short_month => true %>
答案 0 :(得分:5)
如果我理解正确的话,你只能使用date_select
而不是f
,但是你能否展示完整的表格代码?