这是一个*helper.rb 的代码。而不是这 3 种方法(它们工作得很好)
def years_of_birth_select(form)
form.select :year_of_birth, (1..31).to_a
end
def months_of_birth_select(form)
form.select :month_of_birth, months
end
def days_of_birth_select(form)
form.select :day_of_birth, years
end
我试图只调用一种方法
def date_of_birth_select(form)
form.select :day_of_birth, years
form.select :month_of_birth, months
form.select :year_of_birth, (1..31).to_a
end
它被称为
= date_of_birth_select f
它只显示一个选择,,,:year_of_birth
选择。
我做错了什么,我应该怎么做才能date_of_birth_select
正确调用?