在我正在构建的应用程序中添加搜索功能时,我遇到了这个弃用警告。我正在使用rails 4。
这是我的整个搜索控制器。
class SearchController < ApplicationController
def index
@links = Link.search(title: params[:q]).page(params[:page]).per_page(20)
end
end
我对 Rails 很陌生,但我觉得这与强大的参数有关。关于如何通过此警告的任何建议?
我正在使用 Textacular:https ://github.com/textacular/textacular