Cocoon gem を使用して、Poi(Point of Interest) オブジェクトのネストされた属性を持つ Package オブジェクトを作成しようとしています。新しいパッケージを作成するときに、既存の Pois を追加して関連付けを選択したいと考えています。しかし、問題は、新しいパッケージを作成するときに、このパッケージに追加した Pois がリンクされていないことです。そのため、フォームを送信しても package_pois 関係は作成されません。
私のコードがあります:
class Package
has_many :package_pois
has_many :pois, :through => :package_pois, :class_name => 'Poi'
belongs_to :user
accepts_nested_attributes_for :pois
accepts_nested_attributes_for :package_pois
end
class PackagePoi
belongs_to :poi
belongs_to :package
accepts_nested_attributes_for :poi, :reject_if => :all_blank
end
パッケージ/_form.html.erb
<div id="package">
<%= f.simple_fields_for :package_pois do |poi| %>
<%= render 'package_poi_fields', :f => poi %>
<% end %>
<%= link_to_add_association 'dd poi', f, :package_pois %>
</div>
パッケージ/ackage_poi_fields.html.erb
<div class="nested-fields package-poi-fields">
<div id="pacakge_form_list">
<%= f.association :poi, :collection => Poi.all(:order => 'title'), :prompt => 'Add existing poi' %>
</div>
<%= link_to_remove_association "Remove poi", f %>
</div>
そしてpackage-new.js:
$("#package a.add_fields").
data("association-insertion-position", 'before').
data("association-insertion-node", 'this');
$('#package').bind('insertion-callback',
function() {
$(".package-poi-fields a.add_fields").
data("association-insertion-position", 'before').
data("association-insertion-node", 'this');
$('.package-poi-fields').bind('insertion-callback',
function() {
$(this).children("#pacakge_form_list").remove();
$(this).children("a.add_fields").hide();
});
});
package_pois アソシエーションを作成しないのはなぜですか? どうすればいいですか?ありがとう