初学者です。ページネーションメソッドの導入で躓いています。
railsチュートリアルで、ページネーションを導入したく、gem 'will_paginate'とgem 'bootstrap-will_paginate'を入れて、
html
1 2<body id="posts-index2"> 3 <div class="container-fluid"> 4 <div class="error-message"> 5 </div> 6 <h2>クエスト一覧</h2> 7 8 <p>気になるクエストはclickを押して詳細内容を確認してください。</p> 9 <h6>詳細内容のページでクエストは受けられます</h6> 10 <h6>※4か月を過ぎた投稿自動削除されます。</h6> 11 12 <%= will_paginate %> 13 <table border="2"> 14 <tr> 15 <th class="sample">タイトル</th> 16 <th class="sample">仕事日</th> 17 <th class="sample">クエスト場所</th> 18 <th class="sample">詳細内容</th> 19 </tr> 20 21 <% @posts.each do |post| %> 22 <% if post != nil %> 23 <% if post.switch == 0 %> 24 <tr> 25 <td><%= post.title %></td> 26 <td><%= post.jobDate %></td> 27 <td><%= post.basho %></td> 28 <td><a href="<%= "/posts/#{post.id}/show" %>">click</a></td> 29 </tr> 30 <% end %> 31 <% end %> 32 <% end %> 33 </table> 34 <%= will_paginate %> 35 36 </div> 37 <%= yield %> 38</body>
というように<%= will_paginate %> をいれて、
ruby
1 2def index 3 if params[:search] 4 @posts = Post.search(params[:search]).paginate(page: params[:page]).order(created_at: :desc) 5 else 6 @posts = Post.paginate(page:params[:page]).order(created_at: :desc) 7 end 8 end
コントローラはこのようにしました。
console上では、
ruby
1 2irb(main):006:0> Post.paginate(page: 1) 3 Post Load (147.9ms) SELECT "posts".* FROM "posts" LIMIT ? OFFSET ? [["LIMIT", 11], ["OFFSET", 0]] 4=> #<ActiveRecord::Relation [#<Post id: 9, content: " c", title: "運ぶ仕事", category: "アズカリ", cancel: "2020-01-16", radio: "どちらでも", jobDate: "2020-01-16", img: nil, money: "8000", postedname: "田中", postedpic: nil, user_id: 1, basho: "北海道", switch: 0, created_at: "2020-01-04 10:14:05", updated_at: "2020-01-04 10:14:05", opponentcount: 0>]> 5 6
このようになるのですが、indexページにいこうとすると、
undefined method `paginate' for #Class:0x000000001a615070
とエラーがでてしまいます。
どこに問題があるのか分かりません。すいませんがご教授お願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。