radio_button_tagから選択されたデータをparamsで受け取って表示viewで表示させたい
下記の画像の通りエラーは出てこないのですがresultviewに送信しても結果が表示されません、エラーが出てこないので解決策がわからずにいます。
selectview
1<%= form_with url: "/home/result", controller: 'home', action: 'result', local: true do %> 2 <section >質問1 3 <p> 4 <%= radio_button_tag("Question1","1")%> 5 <%= label_tag("Question1_1","1")%> 6 <%= radio_button_tag("Question1","2")%> 7 <%= label_tag("Question1_2","2")%> 8 <%= radio_button_tag("@Question1","3")%> 9 <%= label_tag("Question1_3","3")%> 10 <%= radio_button_tag("Question1","4")%> 11 <%= label_tag("Question1_4","4")%> 12 </p> 13 </section> 14 <section >質問2 15 <p> 16 <%= radio_button_tag("Question2","1")%> 17 <%= label_tag("Question_1","1")%> 18 <%= radio_button_tag("Question2","2")%> 19 <%= label_tag("Question2_2","2")%> 20 <%= radio_button_tag("Question2","3")%> 21 <%= label_tag("Question2_3","3")%> 22 <%= radio_button_tag("Question2","4")%> 23 <%= label_tag("Question2_4","4")%> 24 </p> 25 26 27 <%=submit_tag ("送信") %> 28 29 30<%end%>
controller
1def result 2 case params[:Question1] 3 when 1 4 @Q1 = 1 5 when 2 6 @Q1 = 2 7 when 3 8 @Q1 = 3 9 when 4 10 @Q1 = 3 11 else 12 puts "質問1の回答がありません。" 13 end 14 case params[:Question2] 15 when 1 16 @Q2 = 1 17 when 2 18 @Q2 = 2 19 when 3 20 @Q2 = 3 21 when 4 22 @Q2 = 3 23 else 24 puts "質問2の回答がありません。" 25 end 26 end
resultview
1<div class ="a"> 2 <h1>これが診断結果です</h1> 3 <%= @Q1 %> 4 <%= @Q2 %> 5</div>
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。