gpt4 book ai didi

ruby-on-rails - 在事件管理员中按多个 hstore 键过滤

转载 作者:行者123 更新时间:2023-11-29 12:08:55 24 4
gpt4 key购买 nike

我正在尝试为 hstore 字段添加自定义筛选字段。

在 activeadmin 中:filter :by_title, label: 'Title', as: :string

在模型中:

ransacker :by_title do |parent|
Arel::Nodes::InfixOperation.new('->',
parent.table[:title_translations], Arel::Nodes.build_quoted('en'))
end

此代码正在搜索,根据 activeadmin 选择(包含、等于、starts_with 或 ends_with)创建正确的查询

我使用 hstore 来存储多个语言环境的标题。我想在所有语言环境中搜索。不仅是en,还有fresru

最佳答案

我最终做的是使用像这样的自定义范围:

# Ransackable Scopes
def self.ransackable_scopes(_auth_object = nil)
[:by_title]
end

# My scopes
scope :by_title, ->(search_term) { by_field(search_term, :title) }

scope :by_field, lambda { |search_term, field|
where("#{field}_translations -> :key ILIKE :value", key: :en, value: "%#{search_term}%")
.or(where("#{field}_translations -> :key ILIKE :value", key: :fr, value: "%#{search_term}%"))
.or(where("#{field}_translations -> :key ILIKE :value", key: :de, value: "%#{search_term}%"))
}

它并没有完全回答问题,但它是一个满足我需求的解决方案。

关于ruby-on-rails - 在事件管理员中按多个 hstore 键过滤,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47104364/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com