前提・実現したいこと
プログラミングスクールで実装課題を作成中。投稿画面から投稿内容の保存をしたいのですが、保存ボタンを押すとルーティングエラーが出るので、そのエラー解決をしたい。
発生している問題・エラーメッセージ
Routing Error
No route matches [POST] "/prototypes/new"
Rails.root: /Users/xxxxxxx/projects/protospace-xxxxx
該当のソースコード
views/prototypes/_form.html.erb
HTML
1<%= form_with model: @prototype, url: prototypes_path, 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 %>
views/prototypes/prototypes_controller.rb
HTML
1class PrototypesController < ApplicationController 2 3 def index # indexアクションを定義した 4 end 5 6 def new 7 @prototype = Prototype.new 8 end 9 10 def create 11 @prototype = Prototype.new(prototype_params) 12 if @prototype.save 13 redirect_to root_path 14 else 15 render :new 16 end 17 end 18 19 private 20 21 def prototype_params 22 params.require(:prototype).permit(:title, :catch_copy, :concept, :image).merge(user_id: current_user.id) 23 end 24 25end 26
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: "form" %> 7 </div> 8 </div> 9</div>
config/routes.rb
Ruby
1 2Rails.application.routes.draw do 3 devise_for :users 4 root to: "prototypes#index" 5 6 resources :prototypes, only: [:new, :create] do 7 end 8end 9
models/prototype.rb
Ruby
1 2class Prototype < ApplicationRecord 3 4 belongs_to :user 5 has_one_attached :image 6 7 validates :image, presence: true 8 validates :title, presence: true 9 validates :catch_copy, presence: true 10 validates :concept, presence:true
db/XXXXXXXX_create_prototypes.rb
Ruby
1class CreatePrototypes < ActiveRecord::Migration[6.0] 2 def change 3 create_table :prototypes do |t| 4 5 t.string :title, null: false 6 t.text :catch_copy, null: false 7 t.text :concept, null: false 8 t.references :user, foreign_key: true 9 10 t.timestamps 11 end 12 end 13end
試したこと
・prototypes-controller.rbの記述にミス等がないかを確認した
・エラー文をネットで検索して、同じような質問内容のコードを参考に見直し、修正した
補足情報(FW/ツールのバージョンなど)
Rails 6.0.3.4
ruby 2.6.5
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/31 13:17
2020/12/31 13:19
2020/12/31 23:34