如何对 options_for_select 哈希进行排序?
我有这样的事情:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信在 Ruby1.9 中,这将按照您的预期工作(散列保留其插入顺序),因此如果可以选择使用 1.9,那么您就完成了。
否则,您可以使用数组而不是哈希:
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: