kaminariを実装した際に、投稿一覧では、http://localhost:3000/posts/page/3のようなURLでアクセスできるようにはできたのですが、検索結果の画面では、http://localhost:3000/search?page=2&q=テスト となっており、この画面にも/page/3のULRに変更したいです。
actionに:searchを追加してみたりしたのですが、どちらか片方しか反映されません。
ご教示願います、
routes.rb
rb
1resources :posts do 2 resources :comments, only: [:create, :destroy] 3 collection do 4 get 'page/:page', action: :index 5 end 6 end 7 get 'search' => 'posts#search', as: :search
routes.rb
rb
1 def index 2 @posts = Post.all.order(id: :DESC).page(params[:page]) 3 4 @tags = Post.tag_counts_on(:tags).order('count DESC') # タグ一覧表示 5 #.most_used(20) 数指定 6 if @tag = params[:tag] # タグ検索用 7 @post = Post.tagged_with(params[:tag]).order(id: :DESC).page(params[:page]) # タグに紐付く投稿 8 end 9 end 10 11 def search 12 #Viewのformで取得したパラメータをモデルに渡す 13 @posts = Post.search(params[:q]).page(params[:page]) 14 # 検索キーワードなしのリダイレクト 15 if params[:q] == "" 16 redirect_to '/search?q=' 17 end 18 19 @tags = Post.tag_counts_on(:tags).order('count DESC') 20 if @tag = params[:tag] 21 @post = Post.tagged_with(params[:tag]).order(id: :DESC) 22 end 23 end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。