我试图通过has_one(with:class_name选项)和belongs_to relation设置一个表单来设置两个子对象的值。但是,当我通过表单输入和提交值时,即使输入不同的值,两个子对象也具有相同的值。
我有这两个型号。 (上面的两个子对象表示" origin"" destination"其类名为" Place")
class Route < ActiveRecord::Base
attr_accessible :name, :destination_attributes, :origin_attributes
has_one :origin, :class_name=>"Place"
has_one :destination, :class_name=>"Place"
accepts_nested_attributes_for :origin, :destination
end
class Place < ActiveRecord::Base
attr_accessible :address, :lat, :lng, :name, :route_id
belongs_to :route, :foreign_key => "route_id"
end
使用部分跟随形式。
路由/ _form.html.erb
<%= form_for(@route) do |f| %>
<div class="field">
<%= f.label :name %><br />
<%= f.text_field :name %>
<br />
<%= render :partial => "places/nested_places_form", :locals => {record_name: :origin, place_object: @route.origin, parent_form: f} %>
<br />
<%= render :partial => "places/nested_places_form", :locals => {record_name: :destination, place_object: @route.destination, parent_form: f} %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
地方/ nested_places_form.html.erb
<%= parent_form.fields_for record_name, place_object do |t| %>
<%= record_name %>
<% if place_object.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@place.errors.count, "error") %> prohibited this place from being saved:</h2>
<ul>
<% @place.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= t.label :name %><br />
<%= t.text_field :name %>
</div>
<div class="field">
<%= t.label :lat %><br />
<%= t.text_field :lat %>
</div>
<div class="field">
<%= t.label :lng %><br />
<%= t.text_field :lng %>
</div>
<% end %>
就像我提到的那样,即使我在空白处放置不同的值并从表单提交,原始和目的地的属性也总是相同。
我该如何使这项工作?
答案 0 :(得分:0)
不知何故,您需要区分数据库中的原点和目的地。如果它们都具有相同的类并存储在同一个表中,则没有什么可以区分它们。如果您不想更改现有关系,可能需要为此使用STI并使源和目标设置为不同的类:
class OriginPlace < Place
end
class DestinationPlace < Place
end
class Route < ActiveRecord::Base
...
has_one :origin, :class_name=>"OriginPlace"
has_one :destination, :class_name=>"DestinationPlace"
...
ene
这将需要位置表中的type
字段。