5

我需要在 User 模型中选择第二个条目。

User.second不工作,也不工作User.2or User.two

我正在尝试设置u为第二个用户条目(u = User.2

4

1 回答 1

7

以下应该有效:

User.all.second
User.offset(1).first

# Assuming you are using incremental keys and have users with ID's 1 and 2:
User.find(2)
于 2013-08-18T02:06:08.843 回答