前提・実現したいこと
プログラミング初学者です。現在オリジナルアプリの制作を行っています。
https://qiita.com/Kazuhiro_Mimaki/items/1f8e851b957f511c88e9こちらの記事を参考にいいねの数の多い順に並べ替える機能を実装しました。そこで、ページネーションと合わせて実装したいのですが、実装方法がわかりません。
自分なりにしてみたのですがうまくいかない状態です。ご教授お願い致します。
発生している問題・エラーメッセージ
NoMethodError (undefined method `paginate' for #<Array:0x00007fffde2f4b90>): app/controllers/posts_controller.rb:52:in `ranking'
post_controller.rb
class PostsController < ApplicationController before_action :logged_in_user, only: [:new, :index, :create, :destroy] before_action :correct_user, only: [:destroy, :edit, :update] def new @post = current_user.posts.build if logged_in? end def index @feed_items = current_user.feed.paginate(page: params[:page],per_page: 12) if logged_in? end def show @post = Post.find(params[:id]) @comments = @post.comments.includes(:user) @comment = @post.comments.build(user_id: current_user.id) if current_user end def create @post = current_user.posts.build(post_params) @post.image.attach(params[:post][:image]) if @post.save flash[:success] = "投稿しました" redirect_to posts_url else @feed_items = current_user.posts.build(post_params) render 'posts/new' end end def edit @post = Post.find(params[:id]) end def update @post = Post.find(params[:id]) if @post.update(post_params) flash[:success] = "投稿情報を更新しました" redirect_to @post else render 'edit' end end def destroy @post.destroy flash[:success] ="投稿を削除しました" redirect_to request.referrer || posts_url end def ranking @posts = Post.sort_like.paginate(page: params[:page],per_page: 15) end private def post_params params.require(:post).permit(:name, :content, :image) end def correct_user @post = current_user.posts.find_by(id: params[:id]) redirect_to root_url if @post.nil? end end
###posts/ranking.html.erb
<div class="container"> <div class="row"> <h1>投稿一覧</h1> <div class="index-btn"> <a class="btn btn-lg btn-default" href="/" role="button">新着順</a> <a class="btn btn-lg btn-primary" href="/posts/ranking" role="button">人気順</a> </div> <%= render @posts %> <%= will_paginate @posts%> </div> </div>
###post.rb一部
def self.sort_like Post.all.sort{|a,b| b.liked_users.count <=> a.liked_users.count} end
_post.html.erb
<div class="col-md-4"> <div class="timeline"> <div class="timeline-layout"> <%= link_to image_tag(post.display_image), post_path(post.id) %> </div> <div class="timeline-icon"> <%= link_to gravatar_for(post.user, size:50), post.user %> </div> <div class="timeline-like"> <div id="like-<%= post.id%>"> <%= render partial: "users/like", locals: { post: post } %> </div> </div> <div class="timeline-name"> <%= link_to post.user.name, post.user %> </div> <% if current_user?(post.user) %> <div class="timeline-delete"> <%= link_to "削除", post, method: :delete, data: { confirm: "削除しますか?" } %> <%= link_to "編集", edit_post_path(post) %> </div> <% end %> </div> </div>
補足情報(FW/ツールのバージョンなど)
Rails 6.0.3.2
ruby 2.7.1
ubuntu 18.04 LTS
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。