1

我在我的应用程序中使用 Ruby on rails,mongoid。我想获得集合中的最后一条记录。我试试

Person.find().sort({'_id',-1})

但是,此命令不适用于 ruby​​。我怎样才能获得最后的记录?提前致谢。

4

1 回答 1

2

尝试这个

Person.asc(:created_at).last
于 2013-04-16T13:08:29.827 回答