如何对 options_for_select 哈希进行排序?

发布于 2024-10-16 06:13:55 字数 251 浏览 0 评论 0原文

我有这样的事情:

options_for_select({ "1 - optimal" => 1, "2 - ausreichend" => 2, "3 - verbesserungsfähig" => 3, "4 - nicht ausreichend" => 4, "5 - gar nicht" => 5})

Rails 不会在输出时对这些条目进行排序。如何实现选择字段按数字排序?

I’ve got something like this:

options_for_select({ "1 - optimal" => 1, "2 - ausreichend" => 2, "3 - verbesserungsfähig" => 3, "4 - nicht ausreichend" => 4, "5 - gar nicht" => 5})

Rails doesn’t sort these entries on output. How can I achieve the select field to be sorted numerically?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

酒解孤独 2024-10-23 06:13:55

我相信在 Ruby1.9 中,这将按照您的预期工作(散列保留其插入顺序),因此如果可以选择使用 1.9,那么您就完成了。

否则,您可以使用数组而不是哈希:

options_for_select([["1 - optimal", 1], ["2 - ausreichend", 2], ..., ["5 - gar nicht", 5]])

I believe in Ruby1.9, this would work as you intend (hashes preserve their insertion order), so if using 1.9 is an option then you are done.

Otherwise, you can use an array instead of a hash:

options_for_select([["1 - optimal", 1], ["2 - ausreichend", 2], ..., ["5 - gar nicht", 5]])
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文