前提・実現したいこと
Progateで学んだ後、レシピを投稿するwebアプリを作っている初心者です。
レシピタイトル・画像を入力 → ページ移動 → 材料をチェックボックスで選択(ingredientに格納された材料の栄養成分データをのちのち受け取りたい)→ ページ移動 → 調理手順の入力 という動きにしたいです。
発生している問題・エラーメッセージ
ERR_INVALID_REDIRECT
該当のソースコード
######ルーティング
Ruby_on_rails
1 get "posts/new/step1" => "posts#step1" 2 post "posts/new/step1" => "posts#step1_save" 3 get "posts/new/step2" => "posts#step2" 4 post "posts/new/step2" => "posts#step2_save" 5 get "posts/new/step3" => "posts#step3"
######コントローラー
Ruby_on_rails
1 def step1 2 @post = Post.new 3 @ingredients = Ingredient.all 4 end 5 6 def step1_save 7 session[:title] = params[:title] 8 session[:img] = params[:img] 9 redirect_to("posts/new/step2") 10 end 11 12 def step2 13 @post = Post.new 14 @ingredients = Ingredient.all 15 end 16 17 def step2_save 18 redirect_to("/posts/new/step3") 19 end 20 21 def step3 22 end
######Step1のhtml.erb
Ruby_on_rails
1<h1>新規投稿</h1> 2<div class="post-show"> 3 <%= form_tag("/posts/new/step1", {multipart: true, local: true, method: "post"}) %> 4 <div class="title"> 5 <p>題名</p> 6 <input name="title"> 7 </div> 8 <div class="posts-img"> 9 <p>画像</p> 10 <input name="img" type="file"> 11 </div> 12 <div class="btn"> 13 <input type="submit" value="投稿"> 14 </div> 15 <% end %> 16</div>
######Step2のhtml.erb
Ruby_on_rails
1<div class="check_box" > 2 <%= form_with(scope: :session, post_id: @post.id, local: true) do |form| %> 3 <%= form.collection_check_boxes(:ingredient_ids, Ingredient.all, :id, :name) do |i| %> 4 <%= i.label { i.check_box + i.text } %> 5 <% end %> 6 <%= form.submit %> 7 <% end %> 8</div>
試したこと
form_tagではなくform_withを使ってみた(2から3への移動は問題ないので)。
ルーティングを変えてみた。
補足情報(FW/ツールのバージョンなど)
Ruby_on_rails6を使用しています。
あなたの回答
tips
プレビュー