RoR嵌套属性在编辑时会产生重复


67

我正在尝试遵循Ryan Bates RailsCast#196:嵌套模型第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

因此,创建包含三个问题的新调查很好。但是,如果我尝试编辑调查之一,则将保留原来的三个问题,同时还会创建另外三个问题。因此,我现在有6个问题,而不是3个问题。

Rails.logger.debug("New method executed")

据我所知,在执行编辑操作时不会执行该新方法。谁能告诉我我在做什么错?

任何帮助是极大的赞赏!


您可以在控制器代码中添加编辑和更新操作,以便我们检查那里的错误吗?
Almaron

当然可以!我想简短的坛子上有些东西丢了。
和解者

Answers:


161

所以我想通了。我必须:idsurvey_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的新手,因此请花一点时间对我进行分析,但是我想应该是在生成新ID而不是将其传递给更新操作的。希望这可以帮助其他人。


2
有用的提示,谢谢!(编辑:之所以说是因为大多数人在解决问题时不会回答自己的问题。)
罗宾·坎特斯

2
当然可以!我已经转过很多次了,尝试回馈是很公平的。:)
调解人

1
也是RoR新手。你救了我!我已经花了2天的时间在这些嵌套表格上,而我只是想让这个相对简单的应用完成大声笑。
dtc

很高兴听到您的消息-很高兴能为您提供帮助!:)
调解人

4
谢谢!这已经困扰了好几天,并且进行了大量的搜索。
timmillwood 2014年

7

cocoon在Rails 4上使用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
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.