4

我在 Ruby/Sinatra 中有一个显示日期字段的表单:

%input{:type => "date", :name => "due_date", :value => @m.due_date}

在屏幕上,表单域显示为day-month-year(例如 23-11-2012)。
我希望将字段内容显示为year-month-day(例如 2012-11-23)。

建议?

4

1 回答 1

5

尝试:

@m.due_date.strftime("%Y-%m-%d")

看看http://www.ruby-doc.org/core-1.9.3/Time.html#method-i-strftime

于 2012-11-16T11:32:23.253 回答