如何发出活动记录请求以获取与其他几个项目共有的项



我正在尝试修改Sharetribe,一个用于在线社区的Ruby on Rails框架。有这种方法可以返回相关的搜索过滤器。

现在,如果它存在于任何一个类别中(由category_ids标识(,它会返回一个过滤器。

我希望它返回一个过滤器,当且仅当它存在于category_ids标识的所有类别中时。

作为Rails和ActiveRecord的新手,我有点迷茫。这是返回相关过滤器的方法:

# Database select for "relevant" filters based on the `category_ids`
#
# If `category_ids` is present, returns only filter that belong to
# one of the given categories. Otherwise returns all filters.
#
def select_relevant_filters(category_ids)
relevant_filters =
if category_ids.present?
@current_community
.custom_fields
.joins(:category_custom_fields)
.where("category_custom_fields.category_id": category_ids, search_filter: true)
.distinct
else
@current_community
.custom_fields.where(search_filter: true)
end
relevant_filters.sort
end

有没有办法更改SQL请求,或者我应该像现在一样检索所有字段,然后删除我不感兴趣的字段?

尝试以下操作

def select_relevant_filters_if_all(category_ids)
relevant_filters =
if category_ids.present?
@current_community
.custom_fields
.joins(:category_custom_fields)
.where("category_custom_fields.category_id": category_ids, search_filter: true)
.group("category_custom_fields.id") 
.having("count(category_custom_fields.id)=?", category_ids.count)
.distinct
else
@current_community
.custom_fields.where(search_filter: true)
end
relevant_filters.sort
end

这是你HomeController中的新方法,注意名称不同,只是省略了猴子补丁。欢迎评论。

因此,我通过选择所选类别的所有子类别中的过滤器来解决我的问题。为此,我选择所有子类别的所有过滤器,并且只保留返回次数与子类别数量完全相同的过滤器。

all_relevant_filters = select_relevant_filters(m_selected_category.own_and_subcategory_ids.or_nil)
nb_sub_category = m_selected_category.subcategory_ids.size
if nb_sub_category.none?
relevant_filters = all_relevant_filters
else
relevant_filters = all_relevant_filters.select{ |e| all_relevant_filters.count(e) == nb_sub_category.get }.uniq
end

相关内容

  • 没有找到相关文章

最新更新