2
,如何排除在此範圍內的一些項目:排除ID在軌道範圍
scope :within_category, ->(category) { joins(:category).where(:categories => { :id => category }) }
這樣的:
scope :within_category, ->(category, item_type) { joins(:category).where(:categories => { :id => category }, :id NOT IN item_type.id) }