我有以下表格
class Region < ActiveRecord::Base
has_many :companies, through: :companies_regions
has_many :companies_regions, :dependent => :destroy
end
class Company < ActiveRecord::Base
has_many :regions, through: :companies_regions
has_many :product_type, dependent: :destroy
has_many :companies_regions, :dependent => :destroy
accepts_nested_attributes_for :companies_regions, :allow_destroy => true
end
class CompaniesRegion < ActiveRecord::Base
belongs_to :company
belongs_to :region
end
我想创建一个新公司,我希望能够相应地向CompaniesRegion表添加一个新区域。
form.html.erb
<%= simple_form_for(['admin', @company]) do |f| %>
<%= f.error_notification %>
<div class="form-group">
<%= f.input :name %>
</div>
<div>
<div class="row">
<div class="col-md-12">
<h4>Basic Coverages</h4>
<div class="row form-group">
<label class="col-md-1">#</label>
<label class="col-md-3">Coverage</label>
<label class="col-md-1">Description</label>
</div>
<div>
<%= f.simple_fields_for :companies_regions do |company_region| %>
<%= render 'company_region', f: company_region %>
<% end %>
<%= link_to_add_association 'New Region', f, :companies_regions, partial: 'company_region' %>
</div>
</div>
</div>
<div class="form-actions">
<%= f.button :submit %>
</div>
<% end %>
_company_region.html.erb
<div class="nested-fields form-group row">
<div class="col-md-1"></div>
<div class="col-md-3">
<%#= f.select :region_id, class: 'form-control', placeholder: 'Region' %>
<%= f.input_field :region_id, collection: ['Asia', 'America'], class: 'form-control', prompt: 'Please Select' %>
</div>
<div class="col-md-1">
<%= link_to_remove_association(f, title: 'Remove') do %>
<span class="glyphicon glyphicon-remove"></span>
<% end %>
</div>
</div>
这里的问题是,当我点击New Region链接时,我希望它在_company_region.html.erb中显示详细信息,但不幸的是它没有。
没有任何表现。它不显示任何数据。然而,它刷新了荒谬的页面。
不知道是不是因为我的表是一个连接表因此问题或者是否有其他我缺少但基于文档,这应该没问题,应该可行。
非常感谢任何帮助
答案 0 :(得分:0)
一个非常常见的误解是你需要使用嵌套属性来设置关联。你没有。 Rails为关联生成regions_ids=
setter,可以与复选框或select标签连接。
SimpleForm真正需要的是:
<%= f.association :regions %>
请参阅ActionView::Helpers::FormOptionsHelper的文档和SimpleForm中的关联,了解有关其工作原理的详细信息。
<%= simple_form_for(['admin', @company]) do |f| %>
<%= f.error_notification %>
<div class="form-group">
<%= f.input :name %>
</div>
<div>
<div class="row">
<div class="col-md-12">
<h4>Basic Coverages</h4>
<div class="row form-group">
<label class="col-md-1">#</label>
<label class="col-md-3">Coverage</label>
<label class="col-md-1">Description</label>
</div>
<div>
<%= f.association :regions %>
</div>
</div>
</div>
<div class="form-actions">
<%= f.button :submit %>
</div>
<% end %>
您需要使用嵌套属性的唯一原因是用户必须能够在同一请求中创建区域。但通常最好使用ajax来处理这些情况。
答案 1 :(得分:0)
您的代码看起来很好。您描述的行为似乎表明cocoon.js
代码未正确包含/加载?你有
require 'cocoon'
中添加application.js
? application.js
吗?