#問題
現在、form_with
の中にhidden_field
を用いて、以下のように入力フォームを作成しており、
イメージとしては、以下のような入力フォームで、カテゴリーごとに選んだimageの~.png
だけ保存する流れです。
しかし、現状何を選んでも最後にhidden_fieldのvalueとして記述しているetc.pngというvalueのみ保存されてしまいます。
ruby
1# new.html.erb 2 3<%= form_with model: @income, class: "new-income-form", local: true do |f| %> 4<div class="form-wrap"> 5 <div class="form-header"> 6 <h1 class="form-header-text"> 7 <%= link_to '収入フォーム', new_income_path, class:"post-income-text" %> 8 </h1> 9 </div> 10 <%= render 'shared/error_messages', model: f.object %> 11 <div class="form-content"> 12 <div class="form-date"> 13 <label class="date-category"> 14 <span>日付</span> 15 <%= f.date_field :date, class: 'form-control', id:"date" %> 16 </label> 17 </div> 18 <div class="form-category"> 19 <div class="upper-form"> 20 <div class="category-income-container"> 21 <label class="label-category"> 22 <%= image_tag 'salary.png' , size: '70x70' %> 23 <%= f.hidden_field :image, :value => 'salary.png' %> 24 <span class="form-letter">給料</span> 25 <%= f.radio_button :category, '給料', class:"radio-btn" %> 26 </label> 27 </div> 28 <div class="category-income-container"> 29 <label class="daily-necessities-category"> 30 <%= image_tag 'pocket-money.png', size: '70x80' %> 31 <%= f.hidden_field :image, :value => @income.image %> 32 <span class="form-letter">おこづかい</span> 33 <%= f.radio_button :category, 'おこづかい' %> 34 </label> 35 </div> 36 <div class="category-income-container"> 37 <label class="fashion-category"> 38 <%= image_tag 'bonus.png', size: '70x70' %> 39 <%= f.hidden_field :image, :value => 'bonus.png' %> 40 <span class="form-letter">賞与</span> 41 <%= f.radio_button :category, '賞与' %> 42 </label> 43 </div> 44 <div class="category-income-container"> 45 <label class="hobby-category"> 46 <%= image_tag 'investing.png', size: '70x70' %> 47 <%= f.hidden_field :image, :value => 'investing.png' %> 48 <span class="form-letter">投資</span> 49 <%= f.radio_button :category, '投資' %> 50 </label> 51 </div> 52 <div class="category-income-container"> 53 <label class="medical-category"> 54 <%= image_tag 'second-business.png', size: '80x80' %> 55 <%= f.hidden_field :image, :value => 'seconnd-business.png' %> 56 <span class="form-letter">副業</span> 57 <%= f.radio_button :category, '副業' %> 58 </label> 59 </div> 60 </div> 61 <div class="lower-form"> 62 <div class="category-income-container"> 63 <label class="entertainment-expenses-category"> 64 <%= image_tag 'incidental-income.png', size: '70x70' %> 65 <%= f.hidden_field :image, :value => 'incidental-income.png' %> 66 <span class="form-letter">臨時収入</span> 67 <%= f.radio_button :category, '臨時収入' %> 68 </label> 69 </div> 70 <div class="category-income-container"> 71 <label class="etc-category"> 72 <%= image_tag 'etc.png', size: '70x70' %> 73 <%= f.hidden_field :image, :value => 'etc.png' %> 74 <span class="form-letter">その他</span> 75 <%= f.radio_button :category, 'その他' %> 76 </label> 77
したいこと
ラジオボタンから選んだカテゴリーのimageというカラムにそれぞれのhidden_fieldで指定しているvalueを保存したいです。
どうしても最後のその他のカテゴリーのvalueであるetc.pngが保存されてしまいます。
仮説
<%= f.hidden_field :image, :value => 'etc.png' %>
のコードが最終的に上書きされているから、どのカテゴリーを選んでもimageカラムにはetc.pngが保存されている?
- コントローラーでの保存処理に問題がある?
ruby
1# controller.rb 2def new 3 @income = Income.new 4 end 5 6 def create 7 @income = Income.new(income_params) 8 if @income.save 9 redirect_to root_path 10 else 11 render :new 12 end 13 end
どなたかご教示いただけると幸いです。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/25 06:48
2021/05/25 07:12