我正在尝试将has_scope和ransack结合起来。
这些组件中的每一个都是完美的。但是,当我尝试将它们组合时,它们会相互覆盖。例如,如果我选择范围,则会对结果进行适当过滤,但是一旦我使用ransack中的search_form进一步过滤结果,则会删除范围。反之亦然。
如何实现这一目标?
感谢您的帮助。
请参阅下面我的尝试。
has_scope :upward_trending, :type => :boolean
has_scope :downward_trending, :type => :boolean
has_scope :all, :type => :boolean
def index
@has_scope = apply_scopes(Product).all
@q = @has_scope.search(params[:q])
@products = apply_scopes(@q.result.page(params[:page]).per(30))
end
答案 0 :(得分:0)
使用Ransack的新ransackable_scopes功能,不再需要has_scope
我可以这样做:
def self.ransackable_scopes(auth_object = nil)
[:upward_trending, :downward_trending, :seven_days, :thirty_days, :six_months, :twelve_months, :all_time]
end
然后我可以根据需要在Ransack内调用这些范围。
所以回答这个问题,有了这个新功能,范围已经集成,我们都很好。