ネストされたモデルフォームを生成できません。ここで fields_forがhas_many関係で動作するようにする
は私のモデルです:私はfields_for、Iドンしようとすると、フォームで、しかしdef new
@workout = Workout.new
3.times { @workout.scores.build }
respond_to do |format|
format.html # new.html.erb
format.json { render json: @wod }
end
end
:ワークアウトコントローラで
class Workout < ActiveRecord::Base
has_many :scores
has_many :users, :through => :scores
accepts_nested_attributes_for :scores
end
class Score < ActiveRecord::Base
belongs_to :user
belongs_to :workout
end
class User < ActiveRecord::Base
has_many :scores
has_many :workout, :through => :scores
end
、ここで私は新しいアクションのために持っているものです何も取得できません:
<% f.fields_for :scores do |builder| %>
<p>
<%= builder.label :score %><br />
<%= builder.text_field :score %>
</p>
<% end %>
私は間違っていますか?あなたのWorkout
モデルに以下を追加
「Wod」とは何ですか?なぜあなたはWorkoutsコントローラでそれを作成していますか? –
それはタイプミスでした。一定! – Huey