Rails 3 - ActiveRecord 和反向排序
我在数据库中有以下数据:
1
2
3
4
5
我想输出这个:
3
4
5
我需要它在视图中打印:
<%car.colors.limit(3).order('created_at ASC').each do |color|%>
...
我知道存在reverse_order,但存在类似反向排序的东西强>?
(我知道可以将数据加载到数组中,然后遍历数组,但这种方式效率不是很高)
I have following data in database:
1
2
3
4
5
And I would like to get to output this:
3
4
5
I need it to print in the view:
<%car.colors.limit(3).order('created_at ASC').each do |color|%>
...
I know that exists reverse_order, but exist something like reverse sort?
(I know that is possible to load the data into an array and then go through the array, but this way is not very efficient)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
仅仅做怎么样
How about just doing
对于轨道 4:
对于轨道 3:
对于轨道 2:
For Rails 4:
For Rails 3:
For Rails 2:
单线解决方案
在您的控制器中使用:
One line Solution
in your controller use: