我们的项目目前正在使用Ransack,我们正在考虑介绍Thinking-Sphinx.但是他们都使用
搜索关键字.有没有办法在同一个项目中使用Thinking-Sphinx和Ransack?
预先感谢.
Ransack的
搜索方法只是一个别名.您可以使用
搜索方法代替.
代替:
@q = Person.search(params[:q])
@people = @q.result(:distinct => true)
使用:
@q = Person.ransack(params[:q])
@people = @q.result(:distinct => true)
Person.search应该像往常一样调用ThinkingSphinx.
原文链接:https://www.f2er.com/ruby/264733.html