とのような 2 つのモデルがあるQuestion
としAnswer
ます。Question
には のような 3 つの列がquestion_id, question_type, question_text
あり、Answer
3 つの値がありますanswer_id, question_id, answer_text
。
Answer
モデルのフォームを作成しています。
例:
<%= f.text_field :question_id %>.
<%= f.hidden_field :question_id %>.
ここでは、 を使用してhidden field
を検索していquestion_type
ます。方法を試しましたmap
が、うまくいきません。question_type
だから誰かがその選択によって価値を得るのを手伝ってくださいquestion_id
。
ありがとう