「質問」モデルでネストされた 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