在向我正在构建的应用添加搜索功能时,我遇到了此弃用警告。我正在使用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
答案 0 :(得分:2)
https://github.com/textacular/textacular/commit/af3d1d2b64966b641983e5c6a3e450aae6d0a987
所以它可能来自Textacular
gem。