使用 Globalize3 对模型实例进行排序

发布于 2024-09-18 03:30:45 字数 171 浏览 7 评论 0原文

这个问题看似微不足道,但我找不到任何合理的解决方案。我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

酒解孤独 2024-09-25 03:30:45

当前区域设置的 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')

装纯掩盖桑 2024-09-25 03:30:45
Country.with_translations.order('name')
Country.with_translations.order('name')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文