在准备好的应用程序上使用ransack

时间:2012-08-23 11:14:02

标签: ruby-on-rails

美好的一天。 我的问题是^我正在尝试在准备好的项目上使用ransack。 它使用diff语言和will_paginage。 目前我得到

No Ransack::Search object was provided to search_form_for!

当我尝试访问控制器的索引操作时。 我该怎么做才能使搜索工作?

控制器:

def index
    if params[:set_locale]
      redirect_to articles_path(locale: params[:set_locale])
    else
      if params[:q]
      @search = Article.search(params[:q])
        logger.debug '! IF 1'
         @articles = @search.result(:distinct => true).
           paginate page: params[:page], order: 'created_at desc',
          per_page: 5   # load all matching records
      else
        logger.debug('! ELSE 2')
        @articles = Article.paginate page: params[:page], order: 'created_at desc',
        per_page: 5
      end
    respond_to do |format|
      format.html # index.html.erb
      format.json { render json: @articles }
    end
  end
 end

更新1 是的,如果你贬低我,好吧,但你可以向我解释一下吗?

更新2 和视图

 <%= search_form_for @q do |f| %>
  <%= f.label :articles_title_start %>
  <%= f.text_field :articles_title_start %><br />
  <!-- etc... -->
  <%= f.submit :value=>'Search' %>
<% end %>

更新3 模型

class Article < ActiveRecord::Base
  attr_accessible :text, :title
  validates :title, :presence=>true,:uniqueness=>true
  validates :text, :presence=>true
end

1 个答案:

答案 0 :(得分:1)

你可以尝试

    @q = Article.paginate(:page => params[:page]).search(params[:q])
    @articles = @q.result(:distinct => true)

我从未使用过will_paginate,但是使用kaminari与ransack相同的工作

同样在你的视图中你有var @q并且在你的控制器中你有@search,这些肯定需要相同,所以可能将控制器更改为

.....

 @q = Article.search(params[:q])

 if params[:q]
    logger.debug '! IF 1'
     @articles = @q.result(:distinct => true).
       paginate page: params[:page], order: 'created_at desc',
      per_page: 5   # load all matching records
  else

.....