2013-03-18 17 views
13

Mam dwa modele, skargę i firmę. Skargi belongs_to i accepts_nested_attributes dla Firmy i Firma has_many Reklamacje.Zagnieżdżone atrybuty dla szyn asocjacyjnych belongs_to

# Models 

class Complaint < ActiveRecord::Base 
    attr_accessible :complaint, :date, :resolved 

    belongs_to :user, :class_name => 'User', :foreign_key => 'id' 
    belongs_to :company, :class_name => 'Company', :foreign_key => 'id' 
    has_many :replies 

    accepts_nested_attributes_for :company 

end 

class Company < ActiveRecord::Base 
    attr_accessible :name 

    has_many :complaints, :class_name => 'Complaint', :foreign_key => 'id' 
    has_many :branches, :class_name => 'Branch', :foreign_key => 'id' 
    belongs_to :industry 

end 

W kontrolerze reklamacji próbuję zbudować firmę w nowej metodzie.

# Complaint Controller 

class ComplaintsController < ApplicationController 
... 
def new 
    @complaint = Complaint.new 
    @complaint.build_company 

    respond_to do |format| 
     format.html # new.html.erb 
     format.json { render json: @complaint } 
    end 
    end 
... 
end 

W formularzu dodałem pole do dodania atrybutu nazwy do firmy.

# Complaint Form 

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

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

    <div class="field"> 
    <%= f.label :complaint %><br /> 
    <%= f.text_area :complaint, :rows => 5 %> 
    </div> 
    <div class="field"> 
    <%= f.label :date %><br /> 
    <%= f.datetime_select :date %> 
    </div> 

    <% if current_user.try(:admin?) %> 
    <div class="field"> 
     <%= f.label :resolved %><br /> 
     <%= f.check_box :resolved %> 
    </div> 
    <% end %> 

    <%= fields_for :company do |company| %> 
    <div class="field"> 
     <%= company.label :name, 'Company' %> 
     <%= company.text_field :name %> 
    </div> 
    <% end %> 

    <div class="actions"> 
    <%= f.submit %> 
    </div> 
<% end %> 

Formularz jest przesyłany, ale tylko skarga jest zapisywana. Dane wejściowe użytkownika dla firmy są pomijane. Dlaczego nie stworzysz nowej firmy?

+0

Hi @pjmil, jestem stoi ten sam problem.will proszę powiedzieć silny parametr reklamacji kontrolera? –

+0

Witam, mam do czynienia z tym samym problemem. Jak to naprawiłeś? – aashish

Odpowiedz

17

Mój błąd był w formie. Brakowało mi f. przed fields_for :company

<%= f.fields_for :company do |company| %> 
Powiązane problemy