1

PartiesController#create で ActiveRecord::UnknownAttributeError を取得し続けます。

Party、Products、Traits の 3 つのモデルがあります。

  class Party < ActiveRecord::Base
  has_many :products
  accepts_nested_attributes_for :products
  end

  class Product < ActiveRecord::Base
  belongs_to :party
  has_many :traits
  accepts_nested_attributes_for :traits
  end

  class Trait < ActiveRecord::Base
  belongs_to :product
  end

パーティー形式:

  <%= form_for(@party) do |f| %>
  <% if @party.errors.any? %>
  <div id="error_explanation">
  <h2><%= pluralize(@party.errors.count, "error") %> prohibited this party from being    
  saved:</h2>

  <ul>
  <% @party.errors.full_messages.each do |msg| %>
  <li><%= msg %></li>
  <% end %>
  </ul>
  </div>
  <% end %>

  <div class="field">
  <%= f.label :name %><br />
  <%= f.text_field :name %>
  </div>
  <table> 
  <%= f.fields_for :products do |builder| %>

  <tr> 
  <td> <%= builder.label :shirt, "Shirt " %> </td>
  <td> <%= builder.text_field :shirt %> </td>

  <%= f.fields_for :traits do |builder| %>
  <td><%= builder.label :color, "Color" %></td>
  <td><%= builder.text_field :color %></td>
  <td><%= builder.label :quantity, "Quantity" %></td>
  <td><%= builder.number_field :quantity %></td>
  </tr>
  <tr>
  <td><%= builder.label :pants, "Pants " %></td>
  <td><%= builder.text_field :pants %></td>
  <td><%= builder.label :color, "Color" %></td>
  <td><%= builder.text_field :color %></td>
  <td><%= builder.label :quantity, "Quantity" %></td>
  <td><%= builder.number_field :quantity %></td>
  </tr>
  <% end %>
  <% end %> 
  </table>
  <div class="actions">
  <%= f.submit %>
  </div>
  <% end %>

当事者コントローラー:

  class PartiesController < ApplicationController
  def new
  @party = Party.new
1.times do
product = @party.products.build
2.times {product.traits.build}
  end
  end

  def create
  @party = Party.new(params[:party])

  respond_to do |format|
  if @party.save
    format.html { redirect_to @party, notice: 'Party was successfully created.' }
    format.json { render json: @party, status: :created, location: @party }
  else
    format.html { render action: "new" }
    format.json { render json: @party.errors, status: :unprocessable_entity }
  end
  end
  end

番組ページ: <%= お知らせ %>

  This is <%= @party.name %>'s registry:
  <table>
  <% for product in @party.products %>
  <tr>  
  <td>Shirt</td>
  <td> <%= product.shirt %> </td>
  <% for trait in @product.traits %>
  <td>Color</td>
  <td> <%= trait.color %> </td>
  <td>Quantity</td>
  <td> <%= trait.quantity %> </td>
  </tr>
  <tr>
  <td>Pants</td>
  <td> <%= product.pants %> </td>
  <td>Color</td>
  <td> <%= trait.color %> </td>
  <td>Quantity</td>
  <td> <%= trait.quantity %> </td>
  </tr>
  <% end %> 
  </table>

  <%= link_to 'Edit', edit_party_path(@party) %> |
  <%= link_to 'Back', parties_path %>
  <% end %>

私はすべてを試しました。私は何が欠けていますか?ありがとう!

4

2 に答える 2

4

したがって、params[:party] ハッシュには、Party の属性ではないフォームの要素が含まれている可能性があります。デバッグするには、次を試してください。

def create
  @party = Party.new(:name => params[:party][:name])

本当の複雑さは、Party の下にネストされた製品の下に Traits がネストされていることだと思います。これが、fields_forTraits のメソッドが「builder.fields_for :traits do |traits_fields|」である必要がある理由です。(ただし、「traits_fields」の代わりに「builder」を配置できると思います。

次に、すべての特性フィールドに対して、次を使用します<%= traits_fields.label :pants, "Pants " %>

その後、それはあなたが持っていたように動作するはずです:

def create
  @party = Party.new(params[:party])
于 2012-05-22T15:02:20.383 に答える
2

パラメータ のエラーです。traits本来は"products_attributes"=>{"traits_attributes" => ...です。

これを試してください:<%= builder.fields_for :traits do |traits_fields| %>代わりに:<%= f.fields_for :traits do |builder| %>

于 2012-05-22T15:35:02.693 に答える