我的控制器的 index 方法如下所示:
def index
if params["feed_source_id"]
@feeds = Feed.find_all_by_feed_source_id(params["feed_source_id"])
else
@feeds = Feed.all
end
我刚刚将 Metasearch Gem 添加到我的应用程序中,它将我的索引中的搜索定义为:
@search = Feed.search(params[:search])
如何以菊花链方式连接这两个条件,以便 @search 执行搜索并包含 find_all_by_feed_source_id 条件?