1

在我的应用程序上实现 Mobility 之前,我有这个查询工作:

Product.joins(:category).where('categories.name ILIKE ANY ( array[?] )', categories)

类别在哪里= params[:categories].map {|category| "%#{category}%" }

在实现了 Mobility gem 之后,查询输出显然是:[]

因此,我尝试按照 gem doc 中的说明添加 .i18n:Product.i18n.joins(:category).where('categories.name ILIKE ANY ( array[?] )', categories)

--> 输出 [],因为它没有加入已翻译的表:SELECT "products".* FROM "products" INNER JOIN "categories" ON "categories"."id" = "products"."category_id" WHERE (categories.name ILIKE ANY ( array['%Categorie test%'] ))

然后我尝试加入类别翻译表,但没有成功。我试图用以下问题激发我的查询。但是所有这些查询都失败了:

Product.i18n.joins(:category).joins(:translations).where('categories.name ILIKE ANY ( array[?] )', categories)
Product.i18n.joins(:category).join_translations.where('categories.name ILIKE ANY ( array[?] )', categories)
Product.i18n.joins(:mobility_string_translations).where('categories.name ILIKE ANY ( array[?] )', categories)
Product.i18n.joins(:category_name_fr_string_translations).where('categories.name ILIKE ANY ( array[?] )', categories)

返回:undefined method join_translationsCan't join 'Product' to association association_name '

如何使用 ILIKE 加入类别和查询以获取翻译输出?

4

1 回答 1

1

感谢 Chris 的帮助,以下是可能感兴趣的人的有效 Arel 查询:

Product.joins(:category).merge(Category.i18n {name.matches_any(categories)})
于 2018-07-03T09:29:37.417 回答