我有这个表格:
<% form_tag add_expt_details_samples_path, :method => :post do %>
<% for sample in @samples %>
<% if sample.study_id == @study.id %>
<% fields_for "samples[]", sample do |form| %>
<fieldset>
<legend>Sample Name: <%= sample.name %></legend>
<p><center><%= form.label :sample_title %>
<%= form.text_field :sample_title, :size => 25 %></center></p>
<table>
<tr>
<td>
<%= form.label :taxon_id %>
<%= form.text_field :taxon_id, :size => 15 %>
</td>
<td>
<%= form.label :scientific_name %>
<%= form.text_field :scientific_name, :size => 20 %>
</td>
<td>
<%= form.label :common_name %>
<%= form.text_field :common_name, :size => 15 %>
</td>
</tr>
</table>
<p>
<center>
<%= form.label :sample_descripition %><br \>
<%= form.text_area :description %>
</center>
</p>
</fieldset>
<% end %>
<% end %>
<% end %>
<p><center><%= submit_tag "Next" %></center></p>
<% end %>
我想在 add_expt_details 操作中收集 samples[],以便我可以呈现一个 post 方法视图,以便为 samples[] id 添加新的模型记录。
我的动作如下
def add_expt_details
# Collect the samples that were sent
@expt_samples = Sample.find(params[:samples])
# @expt_samples.each do |samp|
# samp.expts.build
# end
end
然后将它们发送到创建操作,在该操作中更新示例详细信息并可以创建 expt 值。
def create_study
@samples = Sample.update(params[:samples].keys, params[:samples].values).reject { |p| p.errors.empty? }
if @samples.empty?
flash[:notice] = "Samples updated"
redirect_to :action => "add_expt_details", :anchor => "ok"
else
render :action => 'edit_individual'
end
end
有没有办法实现这一点,我使用了accepted_nested_attributes_for :expts, :dependent => :destroy。但我似乎在某些地方错了,我不想有一个包含很多字段的表单。
我收到的错误消息是“未知键:3、6、12”
所有建议表示赞赏。