date_select不显示在rails中

时间:2012-01-24 18:58:52

标签: ruby-on-rails

我正在使用带有rails 3.1.3的设计1.5.3,ruby 192,我遵循本教程:http://ecuadoronrails.org/creando-un-sistema-de-autenticacion-de-usuarios-en-ruby-on-rails/#more-186

在我看来,我有:

<div><%= f.label :fecha_de_vencimiento %></br>  
  <%= f.date_select(:fecha_vencimiento, :start_year => 1901, :end_year => 2011, :include_blank => true) %>

但是当我去 http:// localhost:3000 / users / sign_up

我得到一个标签的文本字段,就像任何其他字段一样...而不是date_select字段

我做错了什么?我需要安装任何宝石??????

2 个答案:

答案 0 :(得分:1)

在我的config / locales / en.yml

month_names:[〜,Enero,Febrero,Marzo,Abril,Mayo,Junio,Julio,Agosto,Septiembre,Octubre,Noviembre,Diciembre]

答案 1 :(得分:0)

我不是百分之百确定,但你是否尝试过?

  <%= f.date_select :fecha_vencimiento, {:start_year => 1901, :end_year => 2011, :include_blank => true} %>