これが *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
1つのメソッドだけを呼び出そうとしました
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
そして、 1つの選択、選択、選択のみが表示され:year_of_birth
ました。
私は何を間違えましたか、date_of_birth_select
正しく呼び出すにはどうすればよいですか?