我有两个模型,Preset 和 Plot,如下所示:
class Preset < ApplicationRecord
belongs_to :user
has_many :plots, :dependent => :destroy
accepts_nested_attributes_for :plots, allow_destroy: true
end
class Plot < ApplicationRecord
belongs_to :preset
belongs_to :theme, optional: true
end
还有一个用于编辑预设的嵌套表单:
= form_with(model: @preset, local: true, method: "patch") do |f|
= label_tag(:preset_name, "Preset name:")
= text_field_tag(:preset_name, @preset.name)
%br
= f.fields_for :plots do |builder|
%br
= render 'editplot', f: builder
%br
根据railscast 196定义用于销毁绘图的复选框的部分 _editplot :
= f.label(:name, "Change plot:")
= f.select(:name, options_for_select([['Existing Plot 1', 'Existing Plot 1'], ['Existing Plot 2', 'Existing Plot 2']]))
= f.label(:_destroy, "Remove plot")
= f.check_box(:_destroy)
我在预设控制器中允许了 _destroy 参数
def preset_params
params.require(:preset).permit(:name, plots_attributes: [:id, :name, :parameter_path, :theme_id, :_destroy])
end
编辑预设的所有其他方面都可以正常工作,但 _destroy 的复选框不能。编辑屏幕上销毁两个地块之一的参数在控制台中显示如下:
Parameters: {"authenticity_token"=>"TOKEN", "preset_name"=>"Preset", "preset"=>{"plots_attributes"=>{"0"=>{"name"=>"Existing Plot 1", "_destroy"=>"1", "id"=>"16"}, "1"=>{"name"=>"Existing Plot 1", "_destroy"=>"0", "id"=>"17"}}}, "commit"=>"Update Preset", "id"=>"25"}
"_destroy"=>"1" 的存在表明这是按预期工作的。但是,当使用 Chrome 开发工具检查页面时,它显示<input name="preset[plots_attributes][0][_destroy]" type="hidden" value="0">
复选框旁边还有一个隐藏字段,其 _destroy 值在提交表单时也被传递。我有一种感觉,这个元素正在干扰表单,但我不确定它来自哪里或如何摆脱它。
我没有在这里包含它,但我有一些相同形式的 JS 代码,它们添加和删除“新绘图”部分,这些代码生成自己的 _destroy 字段。我不认为它们会成为问题的原因,但如有必要,我可以在编辑中添加此代码。