我有一个时间字段,希望只显示以下时间:
09:00 09:15 09:30 09:45 10:00 ... 14:00
我正在使用 Simple_Forms、bootstrap 和 activerecord。
我尝试的最后一件事是设置一个像这样的全局初始化程序:
ValidHours =
['09:00', '09:15', '09:30', '09:45', '10:00', '10:15', '10:30', '10:45',
'11:00', '11:15', '11:30', '11:45', '12:00',
'12:15', '12:30', '12:45', '13:00', '13:15', '13:30', '13:45', '14:00']
然后在 Simple_Forms 我使用:
<%= f.input :order_until_hour, :label => "Order until", :collection => ValidHours %>
这会正确显示值,但它们似乎没有保存在数据库中。
如果可能的话,我还希望在它所属的模型中包含此信息。
我也试过:
def self.ValidHours
['09:00', '09:15', '09:30', '09:45', '10:00', '10:15', '10:30', '10:45', '11:00',
'11:15', '11:30', '11:45', '12:00', '12:15', '12:30', '12:45', '13:00',
'13:15', '13:30', '13:45', '14:00']
end
在视图中:
<%= f.input :order_until_hour, :label => "Order until", :collection => ValidHours %>
但这也没有用。
感谢您提供任何线索!
编辑:
感谢您的回复。我试过你的建议。
它们现在正确显示,我还检查了数据库,它们也被保存了。但是,如果我单击编辑(保存后),它仍然显示为空。
这是代码:
class Shop < ActiveRecord::Base
def self.ValidHours
[['09:00', '09:00'], ['09:15', '09:15'], ['09:30', '09:30'], ['09:45', '09:45'], ['10:00', '10:00'],
['10:15', '10:15'], ['10:30', '10:30'], ['10:45', '10:45'], ['11:00', '11:00'], ['11:15', '11:15'],
['11:30', '11:30'], ['11:45', '11:45'], ['12:00', '12:00'],
['12:15', '12:15'], ['12:30', '12:30'], ['12:45', '12:45'], ['13:00', '13:00'], ['13:15', '13:15'],
['13:30', '13:30'], ['13:45', '13:45'], ['14:00', '14:00']]
end
在视图中:
<%= f.input :order_until_hour, :label => "Order until", :collection => Shop.ValidHours %>
在数据库中,值显示为:
order_until_hour: "2000-01-01 09:00:00"
所以我想我会像这样改变ValidHours:
def self.ValidHours
[['09:00', '2000-01-01 09:00'], ['09:15', '2000-01-01 09:15'] …
但这没有任何区别。