在我的应用程序上实现 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_translations
或Can't join 'Product' to association association_name '
如何使用 ILIKE 加入类别和查询以获取翻译输出?