23

「質問」モデルでネストされた question_output 属性を更新しようとしています。質問には、1 つの質問出力があります。データベースに既存の question_outputs がない場合、すべて正常に機能します。しかし、レコードに既に question_output がある場合、更新しようとすると次のようになります。

関連する既存の question_output を削除できませんでした。外部キーが nil に設定された後、レコードを保存できませんでした。

私は allow_destroy がそれを処理すると思っていたでしょうが、残念ながら、喜びはありません。確かに、これまで has_one をあまり使用したことがありません。しかし、誰かがこれを修正する方法について何かアイデアを持っているなら、私は感謝しています. 以下の関連コード:

フォーム:

= form_for [@question.project, @question], :as => :question, :url => admin_project_question_path(@question.project, @question) do |f|
  = render '/shared/form_errors', :model => @question
  = f.fields_for :question_output_attributes do |qo|
    .field
      = qo.label :question_type
      = qo.select :question_type, QuestionOutput::QUESTION_TYPES
    .field
      = qo.label :client_format
      = qo.select :client_format, QuestionOutput::CLIENT_FORMATS
    .field
      = qo.label :required
      = qo.check_box :required
    .field
      = qo.label :min_input, 'Length'
      = qo.text_field :min_length
      = qo.text_field :max_length
    = f.submit 'Save Question Formatting'

質問モデル:

class Question < ActiveRecord::Base
  has_one :question_output
  accepts_nested_attributes_for :question_output, :allow_destroy => true
end

QuestionOutput モデル:

 class QuestionOutput < ActiveRecord::Base
   belongs_to :question
 end

質問コントローラー:

class Admin::QuestionsController < ApplicationController

 def show
   @question = Question.find(params[:id])
   @question.question_output ||= @question.build_question_output
 end 

 def update
    @question = Question.find(params[:id])
    if @question.update_attributes(params[:question])
      flash[:notice] = t('models.update.success', :model => "Question")
      redirect_to admin_project_question_path(@question.project, @question)
    else
      flash[:alert] = t('models.update.failure', :model => "Question")
      redirect_to admin_project_question_path(@question.project, @question)
    end
  end
end
4

2 に答える 2

47

質問モデルで、has_one 行を次のように変更します。

has_one :question_output, :dependent => :destroy

:allow_destroy => trueを使用すると、 HTML 属性accepts_nested_attributesを介して質問フォーム内から question_output を削除できます。_destroy=1

:dependent => :destroy質問を削除すると、question_output が削除されます 。または、あなたの場合、 question_output が新しいものに置き換えられたときに削除します。

于 2013-01-16T04:10:06.480 に答える
0

新しいレコードを作成するたびに、何らかのオーバーヘッドが生じます。レコード ID を含む非表示フィールドを含めるだけで、破棄する代わりに更新されます。

= qo.hidden_field :id
于 2014-07-16T22:44:13.930 に答える