前提・実現したいこと
Rails勉強中のプログラミング初心者です。
新規投稿・閲覧・編集・削除が可能なアプリケーションを作成して練習しています。
投稿・閲覧・削除機能は実装済みで、投稿されたデータを編集して更新する機能をつけたいのですが、更新ボタン('Update Book')を押すと、以下のエラーが出てしまい、更新できずにいます。
エラーメッセージ
Routing Error
No route matches [PATCH] "/books1"
Request
Parameters:
{"utf8"=>"✓",
"_method"=>"patch",
"authenticity_token"=>"eAXJDUfwXsQSCjfMvblTNn3D8f3jateAhhfDhFNm8VqxLsccc4pkT1KHNLs8VkDVOxqS3IPD3BYMwyL5rWVA0w==",
"book"=>{"title"=>"test", "body"=>"test"},
"commit"=>"Update Book"}
###Routes.rb
Ruby
1Rails.application.routes.draw do 2 3#For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html 4 root to: 'homes#top' 5 get 'books' => 'books#index', as: 'index_book' 6 post 'books' => 'books#create' 7 8 9 get 'books/:id' => 'books#show', as: 'show_book' 10 get 'books/edit' => 'books#edit' 11 get 'books/:id/edit' => 'books#edit', as: 'edit_book' 12 patch 'books/:id' => 'books#update', as: 'update_book' 13 14 15 delete 'books/:id' => 'books#destroy', as: 'destroy_book' 16end
###books_controller.rb
Ruby
1class BooksController < ApplicationController 2 def index 3 @books = Book.all 4 @book = Book.new 5 end 6 7 def create 8 book = Book.new(book_params) 9 book.save 10 redirect_to books_path(book.id) 11 end 12 13 def show 14 @book = Book.find(params[:id]) 15 end 16 17 def new 18 end 19 20 def edit 21 @book = Book.find(params[:id]) 22 end 23 24 def update 25 book = Book.find(params[:id]) 26 book.update(book_params) 27 redirect_to book_path(book.id) 28 end 29 30 def destroy 31 book = Book.find(params[:id]) 32 book.destroy 33 redirect_to books_path 34 end 35 36 private 37 def book_params 38 params.require(:book).permit(:title, :body) 39 end 40end
###edit.html.erb
html
1<h1>Editing Book</h1> 2<!-- form_with部分 --> 3<%= form_with model: @book, url: "/books#{@book.id}", local:true do |f| %> 4 <h4>Title</h4> 5 <%= f.text_field :title %> 6 <h4>Body</h4> 7 <%= f.text_area :body %> 8 <%= f.submit 'Update Book' %> 9 <%= link_to "Show", show_book_path(@book.id) %> 10 <%= link_to "Back", index_book_path(@book.id) %> 11<% end %>
###new.html.erb
html
1<h1>New Book</h1> 2<!-- form_with部分 --> 3<%= form_with model:@book, url: '/books', local:true do |f| %> 4 <h4>Title</h4> 5 <% f.text_field :title %> 6 <h4>Body</h4> 7 <%= f.text_area :body %> 8 <%= f.submit 'Create Book'%> 9<% end %>
###show.html.erb
html
1<h2>Title:</h2> 2<p><%= @book.title %></p> 3<h2>Body:</h2> 4<p><%= @book.body %></p> 5<%= link_to "Edit", edit_book_path(@book.id) %> 6<%= link_to "Back", "/books" %>
###index.html.erb
html
1<h1>Books</h1> 2<table> 3 <tr> 4 <th>title</th> 5 <th>body</th> 6 <th></th> 7 </tr> 8 9 <% @books.each do |book| %> 10 <tr> 11 <td><span><%= book.title %></span></td> 12 <td><span><%= book.body %></span></td> 13 <td><%= link_to "Show", show_book_path(book.id) %></td> 14 <td><%= link_to "Edit", edit_book_path(book.id) %></td> 15 <td><%= link_to "Destroy", destroy_book_path(book.id), method: :delete, "date-confirm" => "Are you sure?" %></td> 16 </tr> 17 <% end %> 18</table> 19 20 <h3>New book</h3> 21 <!-- form_with部分 --> 22 <%= form_with model: @book, url: "/books#{@book.id}", local:true do |f| %> 23 <h4>Title</h4> 24 <%= f.text_field :title %> 25 <h4>Body</h4> 26 <%= f.text_area :body %> 27 <%= f.submit 'Create Book' %> 28 <% end %>
似たような質問やサイトなど参考にしましたが、解決に至っておりません。
説明不足で申し訳ありませんが、よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/19 05:03 編集