我正在建立关系公司:has_many Notes。
我希望能够在Comany#show资源中为刚刚创建的公司添加一些新笔记。所以在公司脚手架的show.html.erb
我已逐步完成了cocoon演示应用程序和github mardown,但这些示例仅显示了将嵌套属性添加到_form.html.erb partial中的方法。我不知道是否有一些特殊的事情要做不同的事情,但是当我尝试运行公司#show action时它会检索到这个错误:
未定义的方法`new_record?'为零:NilClass
这是我的代码:
show.html.erb:
...
<%= simple_form_for :notes, :html => { :class => 'form-horizontal' } do |note| %>
<%= render 'note_fields', :f => note %>
<% end %>
<%= link_to_add_association 'Aggiungi Nota', f, :notes, :render_options => {:wrapper => 'inline' } %>
...
_note_fields.html.erb:
...
<div class="nested-fields">
<%= f.input :body %>
<%= link_to_remove_association "Elimina Nota", f %>
</div>
...
Company.rb:
...
has_many :notes
accepts_nested_attributes_for :notes, :reject_if => :all_blank, :allow_destroy => true
...
Note.rb
class Note < ActiveRecord::Base
attr_accessible :body, :company_id
belongs_to :company
end
company_controller.rb
def show
@company = Company.includes(:category, :clients, :notes).find(params[:id])
@mapCompany = Company.find(params[:id]).to_gmaps4rails
respond_to do |format|
format.html # show.html.erb
format.json { render json: @company }
end
end
谢谢! 戴夫
答案 0 :(得分:1)
在以下代码中,从未定义f
变量。
<%= link_to_add_association 'Aggiungi Nota', f, :notes, :render_options => {:wrapper => 'inline' } %>
尝试使用company
代替f
。