Rails中DateHelper的小笔记

select_* 开关的方法中一些参数

:field_name        对应字段
:prefix            对应类名
:include_position  对应时间,日期的位置(:year, :month, :day, :hour, :minute, :second)


要生成一个只要年,月,小时的时间
select_year DateTime.now.year, :prefix => :post, :field_name => 'written_on', :include_position => :year
年
select_month DateTime.now.month, :prefix => :post, :field_name => 'written_on', :include_position => :month
月
select_hour DateTime.now.hour, :prefix => :post, :field_name => 'written_on', :include_position => :hour
小时



好像没有办法修改生成HTML的ID

你可能感兴趣的:(html,Rails)