0

Rails 3.2 と Ruby 1.9.3 を使用しています

アプリは次のようになります。

モデル

Class Location 
belongs_to :answer
attr_accessible :latitude, :longitude, :answer_id
end


Class Answer
attr_accessible :location
has_one :location
accepts_nested_attributes_for :location
end

コントローラ

def answer
   @answer = Answer.new
   @location = @answer.build_location  
end

意見

<%= f.fields_for :location do |locator| %>
    <%= locator.hidden_field :longitude, class:'longitude' %>
    <%= locator.hidden_field :latitude, class:'latitude' %>
 <% end %>

送信されたハッシュ (ログに表示):

"answer"=>{"location"=>{"longitude"=>"2.3422566", "latitude"=>"48.8198344"}, "commit"=>"Send"}

エラー: ActiveRecord::AssociationTypeMismatch

誰かが問題を見つけるのを手伝ってくれますか?

前もって感謝します

4

1 に答える 1