Ryan Bates RailsCast #196: Nested model form part 1に従おうとしています。Ryans のバージョンとの明らかな違いは 2 つあります。1) 私は組み込みの scaffolding を使用していますが、彼が使用しているほど気の利いたものではありません。2) Rails 4 を実行しています (Ryans がキャストで使用しているバージョンはよくわかりません)。 、しかしそうではない 4)。
だからここに私がやったことです
rails new survey2
cd survey2
bundle install
rails generate scaffold survey name:string
rake db:migrate
rails generate model question survey_id:integer content:text
rake db:migrate
次に、そのようにモデルに関連付けを追加しました
class Question < ActiveRecord::Base
belongs_to :survey
end
など
class Survey < ActiveRecord::Base
has_many :questions
accepts_nested_attributes_for :questions
end
次に、ネストされたビューパーツを追加しました
<%= form_for(@survey) do |f| %>
<!-- Standard rails 4 view stuff -->
<div class="field">
<%= f.label :name %><br>
<%= f.text_field :name %>
</div>
<div class="field">
<%= f.fields_for :questions do |builder| %>
<div>
<%= builder.label :content, "Question" %><br/>
<%= builder.text_area :content, :rows => 3 %>
</div>
<% end %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
そして最後にコントローラーで、新しい調査がインスタンス化されるたびに 3 つの質問が作成されるようにします
class SurveysController < ApplicationController
before_action :set_survey, only: [:show, :edit, :update, :destroy]
# Standard rails 4 index and show
# GET /surveys/new
def new
@survey = Survey.new
3.times { @survey.questions.build }
Rails.logger.debug("New method executed")
end
# GET /surveys/1/edit
def edit
end
# Standard rails 4 create
# PATCH/PUT /surveys/1
# PATCH/PUT /surveys/1.json
def update
respond_to do |format|
if @survey.update(survey_params)
format.html { redirect_to @survey, notice: 'Survey was successfully updated.' }
format.json { head :no_content }
else
format.html { render action: 'edit' }
format.json { render json: @survey.errors, status: :unprocessable_entity }
end
end
end
# Standard rails 4 destroy
private
# Use callbacks to share common setup or constraints between actions.
def set_survey
@survey = Survey.find(params[:id])
end
# Never trust parameters from the scary internet, only allow the white list through.
def survey_params
params.require(:survey).permit(:name, questions_attributes: [:content])
end
end
したがって、3 つの質問を含む新しい調査を作成することは問題ありません。ただし、アンケートの 1 つを編集しようとすると、元の 3 つの質問が維持され、さらに 3 つの質問が作成されます。そのため、編集済みのアンケートでは質問が 3 つではなく、6 つになりました。
Rails.logger.debug("New method executed")
コントローラーの新しいメソッドに、私が知る限り、編集操作を行っているときに実行されません。誰が私が間違っているのか教えてもらえますか?
どんな助けでも大歓迎です!