我正在努力追随瑞恩贝茨RailsCast #196: Nested model form part 1。 Ryans版本有两个明显的区别:1)我正在使用内置脚手架而不是他正在使用的漂亮,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个问题,我现在有6个。我添加了
Rails.logger.debug("New method executed")
到控制器中的新方法,据我所知,当我进行编辑操作时,它不会被执行。谁能告诉我我做错了什么?
非常感谢任何帮助!
答案 0 :(得分:155)
所以我明白了。我必须在:id
方法中将survey_params
添加到允许的参数中。它现在看起来像这样:
# Never trust parameters from the scary internet, only allow the white list through.
def survey_params
params.require(:survey).permit(:name, questions_attributes: [:id, :content])
end
完美无缺。我是一个RoR新手,所以请大家对我的分析,但我想新生成的内容不是传递给更新操作。希望这可以帮助其他人。
答案 1 :(得分:7)
在Rails 4上使用cocoon
gem,即使在编辑时将:id
添加到允许列表中,我仍然会收到重复字段。同时注意到以下内容
Unpermitted parameters: _destroy
Unpermitted parameters: _destroy
因此,我将:_destroy
字段添加到了允许的model_attributes:
字段,之后情况顺利进行。
例如......
def survey_params
params.require(:survey).permit(:name, questions_attributes: [:id, :content, :_destroy])
end