使用 Globalize3 对模型实例进行排序
这个问题看似微不足道,但我找不到任何合理的解决方案。我有 Globalize3 翻译表中存储翻译的国家/地区列表。如何获取按名称排序的国家/地区列表?
国家/地区名称不直接存储在模型中,而是存储在单独的表中。除了手动sql查询,或者AR查询完成后手动对结果表进行排序之外,还有什么合理的方法可以对结果进行排序吗?
The problem seems trivial, but I can't find any reasonable solution. I have list of countries with translations stored in Globalize3 translation tables. How can I fetch the list of countries sorted by name?
Country name isn't stored directly in the model, but in separate table. Is there any reasonable way to sort the result other than manual sql query, or manualy sorting result table after AR query is complete?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当前区域设置的
Country.with_translations(I18n.locale).order('name')
。编辑:
您还可以使用后备:
Country.with_translations(I18n.fallbacks[I18n.locale]).order('name')
Country.with_translations(I18n.locale).order('name')
for current locale.Edit:
You can also use fallbacks:
Country.with_translations(I18n.fallbacks[I18n.locale]).order('name')