質問編集履歴

2

追記

2021/05/25 04:41

投稿

branchpeach
branchpeach

スコア12

test CHANGED
File without changes
test CHANGED
@@ -184,10 +184,44 @@
184
184
 
185
185
 
186
186
 
187
- `<%= f.hidden_field :image, :value => 'etc.png' %>`
187
+ - `<%= f.hidden_field :image, :value => 'etc.png' %>`
188
188
 
189
189
  のコードが最終的に上書きされているから、どのカテゴリーを選んでもimageカラムにはetc.pngが保存されている?
190
190
 
191
191
 
192
192
 
193
+ - コントローラーでの保存処理に問題がある?
194
+
195
+ ```ruby
196
+
197
+ # controller.rb
198
+
199
+ def new
200
+
201
+ @income = Income.new
202
+
203
+ end
204
+
205
+
206
+
207
+ def create
208
+
209
+ @income = Income.new(income_params)
210
+
211
+ if @income.save
212
+
213
+ redirect_to root_path
214
+
215
+ else
216
+
217
+ render :new
218
+
219
+ end
220
+
221
+ end
222
+
223
+ ```
224
+
225
+
226
+
193
227
  どなたかご教示いただけると幸いです。

1

誤字

2021/05/25 04:41

投稿

branchpeach
branchpeach

スコア12

test CHANGED
File without changes
test CHANGED
@@ -186,7 +186,7 @@
186
186
 
187
187
  `<%= f.hidden_field :image, :value => 'etc.png' %>`
188
188
 
189
- のコードが最終的に上書きされているから、どのカテゴリーを選んでもimageカラムにはetc.pngがほぞんされている?
189
+ のコードが最終的に上書きされているから、どのカテゴリーを選んでもimageカラムにはetc.pngが保存されている?
190
190
 
191
191
 
192
192