我的产品模型有一个jsonb字段specs
(我们使用ActiveRecord的store_accessor
进行管理)。我的许多产品规格中都有一个名为spec_options
的哈希规范。
在此之前,此spec_option
字段只是文字。现在它需要是一个数组。
之前用于查询此字段的产品的范围是:
scope :with_spec_options, ->(spec_options) {
where("'#{spec_options}'::jsonb \? (specs->>'spec_option')")
}
Ruby等价物(只是为了帮助理解这是做什么):
select{ |product| spec_options.include?(product.specs['spec_option']) }
ActiveRecord等效项(如果spec_option
是常规列):
where(spec_option: spec_options)
但是,现在specs['spec_options']
是一个数组,我不能这样做。我想我需要使用postgres'?|
jsonb运算符,但我无法弄清楚如何将此操作的右侧转换为正确的格式。
Ruby等价物:
def self.with_spec_options(spec_options)
all.select{|product|
if product.specs['spec_options'].present?
product.specs['spec_options'].any?{|option|
spec_options.include?(option)
}
else
false
end
}
end
有人有想法吗?
答案 0 :(得分:10)
您要使用的是@>
operator,它会测试您的左侧值是否包含右侧值。 "包含"适用于对象和数组,因此以下查询将起作用:
SELECT * FROM products WHERE specs->'spec_options' @> '["spec1", "spec2"]';
我相信您可以转换为ActiveRecord兼容语法,如下所示:
scope :with_spec_options, ->(spec_options) {
where("specs->'spec_option' @> ?", spec_options.to_json)
}