我在使用 ActiveRecord 按日期对帖子进行排序时遇到问题......它没有达到我的预期。
1.9.3p194 :019 > Post.all(:select => [:id, :updated_at], :order => "updated_at DESC")
Post Load (0.7ms) SELECT id, updated_at FROM "posts" ORDER BY published_at DESC, updated_at DESC
+----+---------------------------+
| id | updated_at |
+----+---------------------------+
| 22 | 2012-08-16 18:59:28 -0600 |
| 9 | 2012-08-16 18:58:16 -0600 |
| 11 | 2012-08-15 20:18:53 -0600 |
| 1 | 2012-08-15 20:18:52 -0600 |
| 12 | 2012-08-15 20:18:53 -0600 |
| 6 | 2012-08-15 20:18:52 -0600 |
| 13 | 2012-08-15 20:18:53 -0600 |
| 2 | 2012-08-15 20:18:52 -0600 |
| 15 | 2012-08-15 20:18:53 -0600 |
| 5 | 2012-08-16 21:49:14 -0600 |
| 17 | 2012-08-15 20:18:53 -0600 |
| 4 | 2012-08-15 20:18:52 -0600 |
| 20 | 2012-08-15 20:18:53 -0600 |
| 7 | 2012-08-15 20:18:52 -0600 |
| 21 | 2012-08-15 20:18:53 -0600 |
| 14 | 2012-08-15 20:18:53 -0600 |
| 10 | 2012-08-15 20:18:53 -0600 |
| 8 | 2012-08-15 20:18:53 -0600 |
| 19 | 2012-08-15 20:18:53 -0600 |
| 18 | 2012-08-15 20:18:53 -0600 |
| 16 | 2012-08-15 20:18:53 -0600 |
| 3 | 2012-08-15 20:18:52 -0600 |
+----+---------------------------+
请注意,帖子 #5 的更新日期为 8 月 16 日,但它不会到达顶部!请注意,Rails 似乎对其进行了正确排序....
1.9.3p194 :020 > Post.all(:select => [:id, :updated_at], :order => "updated_at DESC").sort_by &:updated_at
Post Load (0.6ms) SELECT id, updated_at FROM "posts" ORDER BY published_at DESC, updated_at DESC
+----+---------------------------+
| id | updated_at |
+----+---------------------------+
| 1 | 2012-08-15 20:18:52 -0600 |
| 2 | 2012-08-15 20:18:52 -0600 |
| 3 | 2012-08-15 20:18:52 -0600 |
| 4 | 2012-08-15 20:18:52 -0600 |
| 6 | 2012-08-15 20:18:52 -0600 |
| 7 | 2012-08-15 20:18:52 -0600 |
| 8 | 2012-08-15 20:18:53 -0600 |
| 10 | 2012-08-15 20:18:53 -0600 |
| 11 | 2012-08-15 20:18:53 -0600 |
| 12 | 2012-08-15 20:18:53 -0600 |
| 13 | 2012-08-15 20:18:53 -0600 |
| 14 | 2012-08-15 20:18:53 -0600 |
| 15 | 2012-08-15 20:18:53 -0600 |
| 16 | 2012-08-15 20:18:53 -0600 |
| 17 | 2012-08-15 20:18:53 -0600 |
| 18 | 2012-08-15 20:18:53 -0600 |
| 19 | 2012-08-15 20:18:53 -0600 |
| 20 | 2012-08-15 20:18:53 -0600 |
| 21 | 2012-08-15 20:18:53 -0600 |
| 9 | 2012-08-16 18:58:16 -0600 |
| 22 | 2012-08-16 18:59:28 -0600 |
| 5 | 2012-08-16 21:49:14 -0600 |
+----+---------------------------+
我敢肯定这很简单...您可以提供的任何帮助将不胜感激。
我试过这些无济于事:
Post.all(:order => "updated_at DESC")
Post.all(:order => "updated_at DESC").limit(1)