rails 取出当前文章的上一篇和下一篇文章怎么做?
你需要 SQL 查询
select * from posts where id > 100 limit 1
select * from posts where id < 100 limit 1
ActiveRecord 里面
Post.where("id > 100").limit(1).first Post.where("id < 100").limit(1).first
谢谢!