ruby-on-rails – 如何使用全局化从翻译字段中排序查询

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 如何使用全局化从翻译字段中排序查询前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用通过globalize2翻译的字段来排序查询.问题在于,由于存储在数据库和协会中,我遇到了很多问题.

>按类别_translations.name进行翻译和排序的包含不起作用.
>我尝试了一个default_scope,但由于它不允许使用lambda或一个块的条件,我无法得到它的工作,除非我使用这个补丁为ActiveRecord http://gist.github.com/81187
>我已经尝试了在globalize2中定义的with_translations,但是我收到一个错误,我无法让它工作,即使没有订购.

我有这样的东西

class Category < ActiveRecord::Base
  validates_presence_of :name
  validates_uniqueness_of :name
  has_many :products,:dependent => :destroy

  translates :name
end

问题是,我如何按翻译的名字订购?

解决方法

with_translations方法似乎是要走的:

Category.with_translations(I18n.locale).order( ‘category_translations.name’)

另外,如果您使用Postgresql,您可能需要添加不区分大小写的顺序:

Category.with_translations(I18n.locale).order(“LOWER(category_translations.name)ASC”)

更多关于这里:
https://github.com/globalize/globalize#scoping-objects-by-those-with-translations

原文链接:https://www.f2er.com/ruby/271693.html

猜你在找的Ruby相关文章