69

我正在尝试关注 Ryan Bates 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

因此,创建一个包含三个问题的新调查就可以了。但是,如果我尝试编辑其中一个调查,则会保留原来的三个问题,同时还会创建另外三个问题。因此,我现在有 6 个问题,而不是编辑后的调查的 3 个问题。我添加了

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

到控制器中的新方法,据我所知,当我进行编辑操作时它不会执行。谁能告诉我我做错了什么?

任何帮助是极大的赞赏!

4

2 回答 2

162

所以我想通了。我必须: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 新手,所以请对我的分析持保留态度,但我想新的 id 是在哪里生成的,而不是被传递给更新操作。希望这对其他人有帮助。

于 2013-09-22T18:46:31.677 回答
7

在 Rails 4 上使用gem,即使在编辑时添加到允许的列表中cocoon,我仍然会得到重复的字段。:id也注意到了以下几点

Unpermitted parameters: _destroy
Unpermitted parameters: _destroy

所以我将该:_destroy字段添加到允许的model_attributes:字段中,之后一切顺利。

例如...

def survey_params
  params.require(:survey).permit(:name, questions_attributes: [:id, :content, :_destroy])
end
于 2015-05-01T02:58:28.943 回答