日付を選択してアクションに渡す必要があるフォームがあります。しかし、それはそのアクションにパラメーターとして渡されていません。日付の選択にjquery datepickerを使用しています。
ページを見る
<%=f.text_field :due_date%>
コントローラーページ
def create
@task = Task.new(params[:task])
if @task.valid?
@task.due_date=params[:task][:due_date]
@task.save
redirect_to(calenders_path(:date=>@task.due_date,:task_name=>params[:task][:task_name]))
else
render :action=>"new"
end
end
ここでは :task_name のみがパラメーターとして渡されます 助けてください