ruby
1notes/show.html.erb 2 3div class="container"> 4 <div class"user_info"> 5 <%= render partial: "common/user_info"%> 6 </div> 7 <div class="Trade Note Detail"> 8 <div class="row"> 9 <div class="col-6 shadow"> 10 <h2> Trade Note Detail </h2> 11 </div> 12 <% if note.user_id == current_user.id%> 13 <div class="edit col-3"> 14 <a href="#{<%= edit_note_path %>}"><button class="btn btn-success"><strong>+</strong>Noteを編集</button> 15 </div> 16 <div class="destroy col-3"> 17 <a href="#{<%= edit_note_path %>}"><button class="btn btn-danger"><strong>+</strong>Noteを削除</button></a> 18 </div> 19 <% end %> 20 </div> 21 </div> 22(中略)
ruby
1routes.rb 2 3Rails.application.routes.draw do 4 devise_for :users 5 # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html 6 root to: "users#index" 7 resources :users,only:[:index,:show,:edit] 8 resources :notes,except:[:index] do 9 get :search, on: :collection 10 end 11 resources :comments,only:[:create,:edit,:update,:destroy] 12end
ruby
1notes_controller 2 3class NotesController < ApplicationController 4 5 def show 6 @note = Note.find(params[:id]) 7 @comments = @note.comments.order("id ASC").includes(:user) 8 @comment=Comment.new 9 @new_comments = Comment.new 10 end 11
こういうコードなのですがNo route matches [GET] "/notes"
となってしまいます。どうすれば解決しますでしょうか?
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。