Rails中的分页:[]:Array的未定义方法`total_pages'

时间:2013-08-20 11:36:26

标签: ruby-on-rails ruby

在我的Rails应用程序中,我需要根据某些条件执行搜索。由于我有数百万条记录,我需要进行分页。我试过will_paginate。我得到的输出是[]:Array“

的未定义方法`total_pages'

我的控制器:

class TweetsController<ApplicationController
  def index
    city = params[:show]
    search_term = params[:text]        

    search_term.gsub!(/\s/, '%')
    city_coordinates = Coordinates.where('city=?', city)

    @tweets = if (city_coordinates.count == 1 && city_coordinates.first.valid_location?)
      @tweets = Tweets.for_coordinates(city_coordinates.first).paginate(page: params[:page], per_page: 50) &  Tweets.where("tweet_text LIKE?" , "%#{search_term}%").paginate(page: params[:page], per_page: 50)
    else if (city_coordinates.count != 1 )
      @tweets = Tweets.for_user_location(city).paginate(page: params[:page], per_page: 50) &  Tweets.where("tweet_text LIKE?" , "%#{search_term}%").paginate(page: params[:page], per_page: 50)
    else
      @tweets = Tweets.where("tweet_text LIKE? ", "%#{search_term}%").paginate(page: params[:page], per_page: 50)
    end
    end
  end
end

我的观点:

<%= will_paginate @tweets %>
<% @tweets.each do |tweets| %>
<ul>
  <li><%= tweets.id %></li>
  <li><%= tweets.tweet_created_at %></li>    
  <li><%= tweets.tweet_source %></li>
  <li><%= tweets.tweet_text %></li>
  <li><%= tweets.user_id %></li>
  <li><%= tweets.user_name %></li>
  <li><%= tweets.user_sc_name %></li>
  <li><%= tweets.user_loc %></li>
  <li><%= tweets.user_img %></li>
  <li><%= tweets.longitude %></li>
  <li><%= tweets.latitude %></li>
  <li><%= tweets.place %></li>
  <li><%= tweets.country %></li>
<% end %>
</ul>

我尝试使用will_paginate,但它无效。我得到的错误是[]:Array“的未定义方法`total_pages'。我做错了什么?

1 个答案:

答案 0 :(得分:2)

@tweets是一个数组,默认情况下will_paginate不适用于数组。要启用此行为,请使用以下行在config/initalizers中添加新文件:

require 'will_paginate/array'