在我的 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'”。我做错了什么?