ฉันมีBill
วัตถุซึ่งมีDue
วัตถุมากมาย วัตถุยังเป็นของDue
Person
ฉันต้องการแบบฟอร์มที่สามารถสร้างBill
และลูก ๆDues
ทั้งหมดในหน้าเดียว ฉันกำลังพยายามสร้างแบบฟอร์มโดยใช้แอตทริบิวต์ที่ซ้อนกันคล้ายกับในRailscastนี้
รหัสที่เกี่ยวข้องแสดงอยู่ด้านล่าง:
due.rb
class Due < ActiveRecord::Base
belongs_to :person
belongs_to :bill
end
bill.rb
class Bill < ActiveRecord::Base
has_many :dues, :dependent => :destroy
accepts_nested_attributes_for :dues, :allow_destroy => true
end
bills_controller.rb
# GET /bills/new
def new
@bill = Bill.new
3.times { @bill.dues.build }
end
ค่าใช้จ่าย / _form.html.erb
<%= form_for(@bill) do |f| %>
<div class="field">
<%= f.label :company %><br />
<%= f.text_field :company %>
</div>
<div class="field">
<%= f.label :month %><br />
<%= f.text_field :month %>
</div>
<div class="field">
<%= f.label :year %><br />
<%= f.number_field :year %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<%= f.fields_for :dues do |builder| %>
<%= render 'due_fields', :f => builder %>
<% end %>
<% end %>
ค่าใช้จ่าย / _due_fields.html.erb
<div>
<%= f.label :amount, "Amount" %>
<%= f.text_field :amount %>
<br>
<%= f.label :person_id, "Renter" %>
<%= f.text_field :person_id %>
</div>
อัปเดตไปที่ bill_controller.rb ซึ่งได้ผล!
def bill_params
params
.require(:bill)
.permit(:company, :month, :year, dues_attributes: [:amount, :person_id])
end
ฟิลด์ที่ถูกต้องจะแสดงบนเพจ (แม้ว่าจะยังไม่มีเมนูแบบเลื่อนลงPerson
) และการส่งจะสำเร็จ อย่างไรก็ตามไม่มีการบันทึกค่าธรรมเนียมลูกใด ๆ ลงในฐานข้อมูลและมีข้อผิดพลาดเกิดขึ้นในบันทึกของเซิร์ฟเวอร์:
Unpermitted parameters: dues_attributes
ก่อนเกิดข้อผิดพลาดบันทึกจะแสดงสิ่งนี้:
Started POST "/bills" for 127.0.0.1 at 2013-04-10 00:16:37 -0700
Processing by BillsController#create as HTML<br>
Parameters: {"utf8"=>"✓",
"authenticity_token"=>"ipxBOLOjx68fwvfmsMG3FecV/q/hPqUHsluBCPN2BeU=",
"bill"=>{"company"=>"Comcast", "month"=>"April ",
"year"=>"2013", "dues_attributes"=>{
"0"=>{"amount"=>"30", "person_id"=>"1"},
"1"=>{"amount"=>"30", "person_id"=>"2"},
"2"=>{"amount"=>"30", "person_id"=>"3"}}}, "commit"=>"Create Bill"}
มีการเปลี่ยนแปลงใน Rails 4 บ้างหรือไม่?