我正试图使用simple_fields_for在一个简单表单上获取多个空行,但只显示一行/记录。这是下面的代码、模型、控制器和视图。
class Journal < ActiveRecord::Base
has_many :journal_lines
end
class JournalLine < ActiveRecord::Base
belongs_to :journal
end
class JournalController < ApplicationController
def new
@organisation = Organisation.find(params[:organisation_id])
@journal = Journal.new
@journal.journal_lines = Array.new(5, JournalLine.new)
end
...
<%= simple_form_for @journal, :url => {:controller => 'journal', :action => 'create', :id => @organisation.id}, :method => :post do |f| %>
<%= f.input :transaction_date, as: :string, input_html: {class: 'datepicker'} %>
<%= f.input :reference %>
<%= f.input :memo %>
<table>
<tr><td>Account</td><td>Debit</td><td>Credit</td><td>Memo</td></tr>
<%= f.simple_fields_for :journal_lines do |jl| %>
<tr>
<td><%= jl.input :finacct_id, :collection => Finacct.all, :label_method => :full_account_name, :value_method => :id, :label => false ,:include_blank => false %></td>
<td><%= jl.input :debit, :label => false %></td>
<td><%= jl.input :credit, :label => false %></td>
<td><%= jl.input :memo, :label => false %></td>
</tr>
<% end %>
</table>
<%= submit_tag 'Create' %>
<% end %>
我不知道为什么我在屏幕上看不到不止一行日记账。当我记录journal_lines对象时,我看到5个空对象,但只有一个显示在表单中。
好的。我确实得到了一个答案,但它没有按答案工作,所以海报删除了它。然而,经过一番折腾,结果发现期刊模型需要以下
accepts_nested_attributes_for :journal_lines
一旦我添加了这一点,所有五行空白都会显示在表格上
另一个答案也建议我在控制器中这样做
@journal = Journal.new
5.times do |i|
@journal.journal_lines.build
end
不确定这是否有什么不同,但现在已经有了。希望这能有所帮助。