createアクションからデータを保存したい。また、保存ができた場合、idex.html.erbに遷移、できたかった場合、new.html.erbに遷移したい。
ここに質問の内容を詳しく書いてください。
某プログラミングスクールで謎のSNSを作っています。投稿画面から投稿内容の保存をしたい。しかし、保存ボタンを押すとルーティングエラーが出ました。
発生している問題・エラーメッセージ
Routing Error No route matches [POST] "/"
該当のソースコード
config/routes.rb
ruby
1Rails.application.routes.draw do 2 devise_for :users 3 root to: 'prototypes#index' 4 resources :prototypes, only: [:index, :new, :create] 5end
views/prototypes/prototypes_controller.rb
ruby
1class PrototypesController < ApplicationController 2 before_action :move_to_index, except: [:index, :show] 3 4 def index 5 @prototypes = Prototype.all 6 end 7 8 def new 9 @prototype = Prototype.new 10 end 11 12 def create 13 @prototype = Prototype.create(prototype_params) 14 15 if @prototype.save 16 redirect_to root_path 17 else 18 render :new 19 end 20 end 21 22 private 23 def move_to_index 24 unless user_signed_in? 25 redirect_to action: :index 26 end 27 end 28 29 def prototype_params 30 params.require(:prototype).permit(:title, :catch_copy, :concept, :image).merge(user_id: current_user.id) 31 end 32 33end
views/prototypes/new.html.erb
html
1<div class="main"> 2 <div class="inner"> 3 <div class="form__wrapper"> 4 <h2 class="page-heading">新規プロトタイプ投稿</h2> 5 <%# 部分テンプレートでフォームを表示する %> 6 <%= render partial: 'prototypes/form' %> 7 </div> 8 </div> 9</div>
views/prototypes/_form.html.erb
html
1<%= form_with model: @prototype, local: true do |f|%> 2 <div class="field"> 3 <%= f.label :title, "プロトタイプの名称" %><br /> 4 <%= f.text_field :title %> 5 </div> 6 7 <div class="field"> 8 <%= f.label :catch_copy, "キャッチコピー" %><br /> 9 <%= f.text_area :catch_copy, class: :form__text %> 10 </div> 11 12 <div class="field"> 13 <%= f.label :concept, "コンセプト" %><br /> 14 <%= f.text_area :concept, class: :form__text %> 15 </div> 16 17 <div class="field"> 18 <%= f.label :image, "プロトタイプの画像" %><br /> 19 <%= f.file_field :image %> 20 </div> 21 22 <div class="actions"> 23 <%= f.submit "保存する", class: :form__btn %> 24 </div> 25<% end %>
db/XXXXXXXX_create_prototypes.rb
ruby
1class CreatePrototypes < ActiveRecord::Migration[6.0] 2 def change 3 create_table :prototypes do |t| 4 t.references :user, foreign_key: true 5 t.text :concept 6 t.text :catch_copy 7 t.string :title, null: false, default: "" 8 t.timestamps 9 end 10 end 11end 12
models/prototype.rb
ruby
1class Prototype < ApplicationRecord 2 has_one_attached :image 3 belongs_to :user 4 validates :position, presence: true 5 validates :occupation, presence: true 6 validates :profile, presence: true 7 validates :name, presence: true 8 validates :image, presence: true, unless: :was_attached? 9 10 def was_attached? 11 self.image.attached? 12 end 13end 14
ルーティング
root GET / prototypes#index prototypes GET /prototypes(.:format) prototypes#index POST /prototypes(.:format) prototypes#create new_prototype GET /prototypes/new(.:format) prototypes#new
ブラウザ html:1
ブラウザ html:2
ブラウザ html:3
試したこと
・form_withのURLの記述
・controllerのcreateアクションの記述変更
・パスの変更
・rials db:migrate:statusは全てupになっていた
補足情報(FW/ツールのバージョンなど)
Rails 6.0.3.3
ruby 2.6.5
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/19 05:07
2020/09/19 08:18
2020/09/19 08:19
2020/09/19 08:35
2020/09/19 08:38
2020/09/19 08:50
2020/09/19 09:19 編集
2020/09/19 09:18