御時間ありがとうございます。
私はrails3.2に取り組んでおり、gem simple_form、cocoon、およびrails3-jquery-autocompleteを使用しています。
次のモデルMachine、Part、PartUsage、MachineCosting、PartCostingがあります
多対多の関連を持つ機械および部品モデル。
class Machine < ActiveRecord::Base
attr_accessible :name
has_many :part_usages
has_many :parts, :through => :part_usage
end
class Part < ActiveRecord::Base
attr_accessible :name
end
class PartUsage < ActiveRecord::Base
attr_accessible :machine_id,
:part_id
belongs_to :part
belongs_to :machine
end
1対多の関連付けを持つMachineCostingおよびPartCostingモデル。
class MachineCosting < ActiveRecord::Base
attr_accessible :machine_id,
:total_cost,
:machine_name,
:part_costings_attributes
attr_accessor :machine_name
has_many :part_costings, :dependent => :destroy
accepts_nested_attributes_for :part_costings, :allow_destroy => true
def machine_name
self.machine.try(:name)
end
end
class PartCosting < ActiveRecord::Base
attr_accessible :part_id,
:part_name,
:cost
attr_accessor :part_name
belongs_to :machine_costing
belongs_to :part
def part_name
self.part.try(:name)
end
end
MachineCostingのフォーム
views / machine_costings / _form.html.erb <%= simple_form_for(@machine_costing, :html => {:multipart => true}) do |f| %>
<%= f.input :machine_id, :url => autocomplete_machine_id_machines_path,
:as => :autocomplete %>
<!-- HERE, WHENEVER I SELECT A MACHINE, I WANT TO ADD NESTED-FORMS FOR
PARTCOSTINGS CORRESPONDING TO ALL THE PARTS OF THE MACHINE I JUST SELECTED.-->
<%= f.simple_fields_for :part_costings do |part_costing|%>
<%= render 'part_costings/part_costing_fields', :f => part_costing %>
<% end %>
<% end %>
フィールドでmachine_idを選択した後、javascriptを使用してPartCostingsの固定数のフィールドにデータを入力して動的に追加する方法を提案してください。
これ以上の情報を提供させていただきます。
再度、感謝します!!