4

我在我的 Rails 应用程序中使用Simple Form gem 。在我的注册表单中,我有一个出生日期字段。但是,这些字段按以下顺序显示:年/月/日。

获取字段顺序月 - 日 - 年的最佳方法是什么?

我的表格如下所示:

 <%= simple_form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>
   <%= f.input :created_at %>          
   <%= f.button :submit, "Sign up" %>      
<% end %>
4

2 回答 2

8

你在找这个吗?

<%= f.input :birthday, :order => [:month, :day, :year] %>
于 2012-11-02T23:40:12.150 回答
6

我不知道它是否适用于 simple_form,但我怀疑它会......将以下内容添加到config/locals/en.yml(或类似内容):

en:
  date:
    order:
      - :month
      - :day
      - :year
于 2012-11-03T00:09:38.560 回答