0

在我正在构建的应用程序中添加搜索功能时,我遇到了这个弃用警告。我正在使用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

4

1 回答 1

2

https://github.com/textacular/textacular/commit/af3d1d2b64966b641983e5c6a3e450aae6d0a987

所以它可能来自Textaculargem。

于 2013-08-05T08:39:32.223 回答