1

ビューに次のようなフィールドがあります。

<%= f.text_field :question_id, class: "cross-reference-question-value"  %>

今、私question_idは次のように同じテーブルの他の列と一致するこれを使用しようとしました:

<%= text_field :question_id, Question2009.all.map{|an| [an.answer_table]} %>

そのテーブルからすべての値を取得できました。ただし、paramsofに一致する値を取得する必要がありquestion_idます。

4

1 に答える 1

3

変化する

<%= text_field :question_id, Question2009.all.map{|an| [an.answer_table]} %>

<%= text_field :question_id, Question2009.where("question_id=?", params[:question_id]).map{|an| [an.answer_table]} %>
于 2012-10-17T13:21:34.740 に答える