前提・実現したいこと
Ruby on Rails 歴2か月の初心者です。
スクールで勉強したことを生かして自分でSNSチックなアプリを作ってみたく、
挑戦していましたところ、下記のようなエラーが発生しました。
ご教示につきまして、よろしくお願いします。
ーー
(現状)
ビュー上にform_forを使用して検索窓を設置し、入力された検索ワードに対し、
posts controllerのsearchアクションで検索処理を行いたいのですが…
ルーティングエラーが発生し、恐らく検索情報がposts controllerまで
送られていない状態です。
ーー
発生している問題・エラーメッセージ
No route matches [POST] "/" Rails.root: /Users/sasakikibou/Desktop/daily_growth Application Trace | Framework Trace | Full Trace Routes Routes match in priority from top to bottom
該当のソースコード(rails routes 抜粋)
Prefix Verb URI Pattern Controller#Action root GET / posts#index search_posts GET / posts/search(.:format) posts#search posts POST / posts(.:format) posts#create
該当のソースコード(config/routes.rb)
Rails.application.routes.draw do devise_for :users devise_scope :user do get '/users/sign_out' => 'devise/sessions#destroy' end root to: 'posts#index' resources :posts, only: [:create] do get :search, on: :collection resources :comments, only: [:create, :edit, :update] end end
該当のソースコード(views/posts/search.html.haml 検索窓部抜粋)
.main__wrapper .search =form_for search_posts_path do |f| =f.text_field :search, placeholder:"キーワードを入力してください", class:"search__area" =f.submit "検索", ckass:"search__btn"
該当のソースコード(posts controller)
class PostsController < ApplicationController def index @post = Post.new @post.images.new @posts = Post.includes(:user).order(created_at: "DESC") end def create @post = Post.create(input_post) if @post.save flash[:notice] = "投稿が完了しました" redirect_to root_path else flash[:alert] = "投稿に不備がありました" redirect_to root_path end end def search @post = Post.new @post.images.new if params[:search].present? @posts = Post.where('title LIKE ?', "%#{params[:search]}%") else @posts = Post.includes(:user).order(created_at: "DESC") end end private def input_post params.require(:post).permit(:grade, :subject, :title, :textn, images_attributes: [:id, :image]).merge(user_id: current_user.id) end end
試したこと
rails routes を参考にform_forのパスを入力しました。
Prefix、URI、 Controller#Action
を順に入れてみて、パスの指定方法を変えて実行してみましたが、エラーは変わりませんでした。
補足情報(FW/ツールのバージョンなど)
rails (5.0.7.2)