2012-06-04 15 views
8

Mam problem z zapisaniem modelu z moim interfejsem API. Mam modelu karta z wielu zadań i jeden klient powiązany:Got ActiveRecord :: AssociationTypeMismatch na modelu zapisu

class Card < ActiveRecord::Base 
    belongs_to :customer 

    has_many :card_tasks 
    has_many :tasks, :through => :card_tasks 

    accepts_nested_attributes_for :tasks 
    accepts_nested_attributes_for :card_tasks 
    accepts_nested_attributes_for :customer 

end 


class CardTask < ActiveRecord::Base 
    belongs_to :task 
    belongs_to :card 

    accepts_nested_attributes_for :task 
    accepts_nested_attributes_for :card 
end 

class Task < ActiveRecord::Base 
    has_many :cards, :through => :card_tasks 
    has_many :card_tasks 
end 

Gdy wysyłam json tak:

{ 
    "card" = > { 
     "miscellaneous" = > "Obervations diverses", 
     "heater" = > "0", 
     "water_quality" = > "", 
     "customer" = > { 
      "id" = > "2", "house_name" = > "house_name2", "city" = > "city_2", "lastname" = > "lastname2", "sci" = > "sci2", "postal_code" = > "potal_code_2", "address_line_1" = > "address_line_2", "updated_at" = > "2012-03-05 18:20:57 +0000", "created_at" = > "2012-03-05 18:20:54 +0000", "firstname" = > "firstname2", "address_line_2" = > "address_line_3", "water_used" = > "0" 
     }, 
     "tasks" = > [ 
      { 
      "title" = > "Nettoyage ligne eau", "id" = > "6", "updated_at" = > "2012-02-17 08:40:47 +0000", "created_at" = > "2012-02-17 08:40:47 +0000" 
      }, 
      { 
      "title" = > "Surveillance", "id" = > "4", "updated_at" = > "2012-02-17 08:40:47 +0000", "created_at" = > "2012-02-17 08:40:47 +0000" 
      } 
     ] 
    } 
} 

Moja tworzyć działania:

def create 
     card = Card.new(params[:card]) 
     if (card.save) 
     respond_with({ :card => card} , :location => nil, status: :created) and return 
     end 
     respond_with({ :errors => card.errors }, :location => nil, status: :unprocessable_entity) and return 
    end 

robiąc to, Mam:

ActiveRecord::AssociationTypeMismatch (Task(#70249431354580) expected, got ActiveSupport::HashWithIndifferentAccess(#70249421573300)): 
    app/controllers/cards_controller.rb:14:in `new' 
    app/controllers/cards_controller.rb:14:in `create' 

W Czy zrobiłam coś złego?

Odpowiedz

29

Problem występuje w strukturze JSON, Rails oczekuje tasks_attributes, a nie tasks. Aby uzyskać szczegółowe informacje, sprawdź numer this question.

+0

Dziękuję, ale teraz mam ActiveRecord :: RecordNotFound (Nie można znaleźć zadania o ID = 6 dla karty z identyfikatorem =) na model.save() – Sebastien

+2

Niestety, nie widziałem, że zadania są istniejącymi rekordami, a nie nowymi . Zgadnij accepts_nested_attributes_for jest w tym przypadku bezużyteczne, nie pozwala na zmianę asocjacji. Możesz spróbować załatać nested_attributes.rb, zrobić łatkę małpy lub stworzyć niestandardową procedurę obsługi. Oto więcej szczegółów, dlaczego nie jest zaimplementowany: https://github.com/rails/rails/issues/2925 – dimuch

+0

Nie mogę więc utworzyć nowej karty z zadaniami powiązanymi właśnie z obsługą Card.new (params [: card]) z moim jsonem? – Sebastien

Powiązane problemy