-1

ネストされたリソースのコレクションを使用して新しいオブジェクトを作成しようとしています。json を POST すると、次のようになります。

ActiveRecord::AssociationTypeMismatch: FormLabel(#70306552439440) expected, got Hash(#70306480154920)

これが私のコードです:

# form.rb
class Form < ActiveRecord::Base
  has_many :form_labels
  validates_presence_of :name
end

# form_label.rb
class FormLabel < ActiveRecord::Base
  belongs_to :form
  validates_presence_of :form
  validates_presence_of :text
end

# form_representer.rb
module FormRepresenter
  include Roar::JSON
  property :id
  property :name
  collection :form_labels
end

# form_label_representer.rb
module FormLabelRepresenter
  include Roar::JSON
  property :text  
end

# form_controller.rb
class FormsController < ApplicationController
  include Roar::Rails::ControllerAdditions
  def create
    form = Form.new
    consume!(form)
    respond_with(form)
  end

私がデバッグするとき、これらはパラメータです:

0> params
=> {"name"=>"Address", "form_labels"=>[{"text"=>"foo"}], "format"=>"json", "controller"=>"forms", "action"=>"create", "form"=>{"name"=>"Address"}}

エラーは次のとおりです。

ActiveRecord::AssociationTypeMismatch: FormLabel(#70237358584300) expected, got Hash(#70237286721880)
4

1 に答える 1

0

エラーは次の行にあります。

collection :form_labels

次のようにする必要があります。

collection :form_labels, decorator: FormLabelRepresenter, class: FormLabel

https://github.com/apotonick/roar-rails/issues/125#issuecomment-172175231を参照してください

于 2016-01-18T17:38:38.337 に答える