我有以下观点:
=f.date_select :start_date, { :start_year => 1990, :end_year => Time.now.year, :discard_day => true, :prompt => true, :order => [ :month, :year] }
我的:start_year是我的ActiveRecord模型中名为WorkHistory的属性。 在我的控制器中我有:
@work_history = WorkHistory.new(params[:work_history])
start_date永远不会被设置,始终是nil
。我错过了什么吗?
答案 0 :(得分:2)
好的我需要添加attr_accessible
才能使用。