私は関係会社を構築しています:has_many Notes.
Comany#show リソースで、作成したばかりの会社に新しいメモを追加できるようにしたいと考えています。そのため、会社の足場の show.html.erb で
私は繭デモストレーションアプリとgithub mardownから段階的にフォローしましたが、例ではネストされた属性を_form.html.erbパーシャルに追加する方法のみを示しています。別の方法があるかどうかはわかりませんが、 Company#show アクションを実行しようとすると、次のエラーが表示されます。
未定義のメソッド「new_record?」nil: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>
...
会社.rb:
...
has_many :notes
accepts_nested_attributes_for :notes, :reject_if => :all_blank, :allow_destroy => true
...
注.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
ありがとう!デイブ