次のコードを使用して、activeadmin と formtastic を使用して timeselect と date select オブジェクトを作成しています。対応するデータ フィールド タイプが時刻と日付であるため、結果として 2 つの timeselect と 1 つの date select オブジェクトが生成されます。問題は、フォームを送信すると ActiveModel::MassAssignmentSecurity エラーが発生することです
<%= f.inputs :class=>'inputs', :for=>Schedule.new do |fu| %>
<%= fu.input :eta, :label=>"ETA", :ignore_date=>true %>
<%= fu.input :etd, :label=>"ETD", :ignore_date=>true %>
<%= fu.input :date, :ignore_time=>true %>
<% end %>
etd および eta フィールドを投稿すると、配列として投稿されます - それらの実際の値をきれいに取得する方法はありますか?